commit eb3c0ea70d7fd47c8a132f2e7a7dfce734c2394b Author: Denys Fedoryschenko Date: Sat Feb 7 08:49:32 2009 -0500 This change was forgotten by Stephen in the last release Signed-off-by: Denys Fedoryschenko Signed-off-by: Jamal Hadi Salim diff --git a/tc/m_ipt.c b/tc/m_ipt.c index f5b7b3c..5b98428 100644 --- a/tc/m_ipt.c +++ b/tc/m_ipt.c @@ -162,10 +162,10 @@ int string_to_number(const char *s, unsigned int min, unsigned int max, return result; } -static void free_opts(struct option *opts) +static void free_opts(struct option *local_opts) { - if (opts != original_opts) { - free(opts); + if (local_opts != original_opts) { + free(local_opts); opts = original_opts; global_option_offset = 0; }