You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-antivirus/clamav/files/clamav-0.103.0-freshclam-db...

28 lines
869 B

diff --git a/freshclam/freshclam.c b/freshclam/freshclam.c
index 8db3b8001..8cde8c9a8 100644
--- a/freshclam/freshclam.c
+++ b/freshclam/freshclam.c
@@ -280,6 +280,14 @@ fc_error_t download_complete_callback(const char *dbFilename, void *context)
goto done;
}
} else {
+ /*
+ * Attempt to test database in a child process.
+ */
+
+ /* We need to be able to wait for the child process ourselves.
+ * We'll re-enable wait in the global handler when we're done. */
+ g_sigchildWait = 0;
+
switch (pid = fork()) {
case -1: {
/*
@@ -391,6 +399,7 @@ done:
logg("!Database test FAILED.\n");
}
+ /* Re-enable the global handler's child process wait */
g_sigchildWait = 1;
return status;