]> ruderich.org/simon Gitweb - tlsproxy/tlsproxy.git/commitdiff
Use memset() to zero sigaction struct.
authorSimon Ruderich <simon@ruderich.org>
Mon, 29 Jul 2013 11:15:58 +0000 (13:15 +0200)
committerSimon Ruderich <simon@ruderich.org>
Mon, 29 Jul 2013 11:15:58 +0000 (13:15 +0200)
src/tlsproxy.c

index 2d2ea1e2cf44f92759a65f58ae33ef0f68e96938..ea0578b78bae88673a8c45f9e8cdbc50897ca395 100644 (file)
@@ -107,8 +107,8 @@ int main(int argc, char **argv) {
         return EXIT_FAILURE;
     }
 
+    memset(&action, 0, sizeof(action));
     sigemptyset(&action.sa_mask);
-    action.sa_flags   = 0;
 #ifdef DEBUG
     /* Setup our SIGINT signal handler which allows a "normal" termination of
      * the server in DEBUG mode. */