diff mbox

iproute2 : ipt - free local opts

Message ID 1234015193.4441.8.camel@dogo.mojatatu.com
State Not Applicable, archived
Delegated to: David Miller
Headers show

Commit Message

jamal Feb. 7, 2009, 1:59 p.m. UTC
>From Denys Fedoryschenko <denys@visp.net.lb>
This was left out in the last release. It is a bug fix for when
batch files are used.

cheers,
jamal
commit eb3c0ea70d7fd47c8a132f2e7a7dfce734c2394b
Author: Denys Fedoryschenko <denys@visp.net.lb>
Date:   Sat Feb 7 08:49:32 2009 -0500

    This change was forgotten by Stephen in the last release
    
    Signed-off-by: Denys Fedoryschenko <denys@visp.net.lb>
    Signed-off-by: Jamal Hadi Salim <hadi@cyberus.ca>
diff mbox

Patch

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;
 	}