From: nbd Date: Thu, 30 Apr 2009 19:34:49 +0000 (+0000) Subject: uci: increase argv size in batch mode to silence a false gcc 4.4 compiler warning X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=c67f654fdd7103ac09c2225aa2d71e06aec5a883;p=10.03%2Fopenwrt.git uci: increase argv size in batch mode to silence a false gcc 4.4 compiler warning git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15521 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/uci/patches/100-gcc_warning.patch b/package/uci/patches/100-gcc_warning.patch new file mode 100644 index 000000000..9ac51448b --- /dev/null +++ b/package/uci/patches/100-gcc_warning.patch @@ -0,0 +1,11 @@ +--- a/cli.c ++++ b/cli.c +@@ -462,7 +462,7 @@ + + static int uci_batch_cmd(void) + { +- char *argv[MAX_ARGS]; ++ char *argv[MAX_ARGS + 2]; + char *str = NULL; + int ret = 0; + int i, j;