Avoid segfault when freeing rules whose target could not be found
authorJo-Philipp Wich <jow@openwrt.org>
Sun, 26 May 2013 14:22:01 +0000 (16:22 +0200)
committerJo-Philipp Wich <jow@openwrt.org>
Sun, 26 May 2013 14:33:45 +0000 (16:33 +0200)
iptables.c

index cea3fcd..2684933 100644 (file)
@@ -1271,7 +1271,9 @@ free:
 
        xtables_rule_matches_free(&r->matches);
 
-       free(r->target->t);
+       if (r->target)
+               free(r->target->t);
+
        free(r);
 
        /* reset all targets and matches */