prevent segfault
authorBart De Schuymer <bdschuym@pandora.be>
Sun, 14 Nov 2004 13:22:29 +0000 (13:22 +0000)
committerBart De Schuymer <bdschuym@pandora.be>
Sun, 14 Nov 2004 13:22:29 +0000 (13:22 +0000)
useful_functions.c

index e0b1e4c..a36062e 100644 (file)
@@ -151,6 +151,8 @@ int ebt_invert = 0;
  */
 int ebt_check_inverse(const char option[])
 {
+       if (!option)
+               return ebt_invert;
        if (strcmp(option, "!") == 0) {
                if (ebt_invert == 1)
                        ebt_print_error("double use of '!' not allowed");