This is a resend with attachment instead of inlining. cheers, jamal
commit 7aad144ecaf7603b17af5372886fe491c3bc6a2f Author: Jamal Hadi Salim <hadi@xxxxxxxxxx> Date: Wed Feb 11 16:19:30 2009 -0500 Dont initialize global xt_params To quote Jan Engelhardt <jengelh@xxxxxxxxxx> " Do not initialize static members - this takes up extra space and adds no benefit. (zeroed anyway even in .bss) " Signed-off-by: Jamal Hadi Salim <hadi@xxxxxxxxxx> diff --git a/xtables.c b/xtables.c index 8e28d5e..114a393 100644 --- a/xtables.c +++ b/xtables.c @@ -48,7 +48,7 @@ void basic_exit_err(enum xtables_exittype status, const char *msg, ...) __attribute__((noreturn, format(printf,2,3))); -struct xtables_globals *xt_params = NULL; +struct xtables_globals *xt_params; void basic_exit_err(enum xtables_exittype status, const char *msg, ...) {