e2fsck: fix valgrind commit in sigcatcher

Thanks to Andreas Dilger for catching this.

Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
bitmap-optimize
Theodore Ts'o 2011-09-03 09:43:50 -04:00
parent 771e8db9f0
commit dd62d85606
1 changed files with 1 additions and 0 deletions

View File

@ -218,6 +218,7 @@ void sigcatcher_setup(void)
{
struct sigaction sa;
memset(&sa, 0, sizeof(struct sigaction));
sa.sa_sigaction = die_signal_handler;
sa.sa_flags = SA_SIGINFO;