summaryrefslogtreecommitdiff
path: root/backend
diff options
context:
space:
mode:
authorMichael R Sweet <michaelrsweet@gmail.com>2016-07-05 08:16:43 -0400
committerMichael R Sweet <michaelrsweet@gmail.com>2016-07-05 08:16:43 -0400
commit9880f818cf9facbb0c62651472c48f7e6f08a0ea (patch)
tree6bbb72a5ae6f514506104f2a66dad4932926b950 /backend
parent0f2f21af96909ef93924940f59d608676cb0bc91 (diff)
downloadcups-9880f818cf9facbb0c62651472c48f7e6f08a0ea.tar.gz
Don't call exit() from signal handler (Issue #4671)
Diffstat (limited to 'backend')
-rw-r--r--backend/ipp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/ipp.c b/backend/ipp.c
index 943fddae6..4f1780c31 100644
--- a/backend/ipp.c
+++ b/backend/ipp.c
@@ -3317,7 +3317,7 @@ sigterm_handler(int sig) /* I - Signal */
if (tmpfilename[0])
unlink(tmpfilename);
- exit(1);
+ _exit(1);
}