This is the mail archive of the libc-hacker@sourceware.org mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] nscd: don't crash if killed early


2011-07-19  Andreas Schwab  <schwab@redhat.com>

	* nscd/nscd.c (main): Don't install termination_handler until
	after databases are initialized.
---
 nscd/nscd.c |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/nscd/nscd.c b/nscd/nscd.c
index 4894cb2..3522f6b 100644
--- a/nscd/nscd.c
+++ b/nscd/nscd.c
@@ -267,9 +267,6 @@ main (int argc, char **argv)
   if (selinux_enabled)
     nscd_avc_init ();
 
-  signal (SIGINT, termination_handler);
-  signal (SIGQUIT, termination_handler);
-  signal (SIGTERM, termination_handler);
   signal (SIGPIPE, SIG_IGN);
 
   /* Cleanup files created by a previous 'bind'.  */
@@ -294,6 +291,10 @@ main (int argc, char **argv)
   /* Init databases.  */
   nscd_init ();
 
+  signal (SIGINT, termination_handler);
+  signal (SIGQUIT, termination_handler);
+  signal (SIGTERM, termination_handler);
+
   /* Handle incoming requests */
   start_threads ();
 
-- 
1.7.6


-- 
Andreas Schwab, schwab@redhat.com
GPG Key fingerprint = D4E8 DBE3 3813 BB5D FA84  5EC7 45C6 250E 6F00 984E
"And now for something completely different."


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]