uci: increase argv size in batch mode to silence a false gcc 4.4 compiler warning
SVN-Revision: 15521
This commit is contained in:
parent
f06689ce61
commit
8994dc4361
1 changed files with 11 additions and 0 deletions
11
package/uci/patches/100-gcc_warning.patch
Normal file
11
package/uci/patches/100-gcc_warning.patch
Normal file
|
@ -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;
|
Loading…
Reference in a new issue