]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Don't call exit() from signal handler (Issue #4671)
authorMichael R Sweet <michaelrsweet@gmail.com>
Tue, 5 Jul 2016 12:16:43 +0000 (08:16 -0400)
committerMichael R Sweet <michaelrsweet@gmail.com>
Tue, 5 Jul 2016 12:16:43 +0000 (08:16 -0400)
backend/ipp.c

index 943fddae612029ea02aae94b60f30fc90cf78aa7..4f1780c31b514e2114cfe7f461b99bff87c1f131 100644 (file)
@@ -3317,7 +3317,7 @@ sigterm_handler(int sig)          /* I - Signal */
   if (tmpfilename[0])
     unlink(tmpfilename);
 
-  exit(1);
+  _exit(1);
 }