summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-08-26 22:28:21 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-08-26 22:28:21 +0000
commitaf35036b945cb0f47c68bb47d9316500d12c6913 (patch)
tree2ef42a4ef2b2103067dd9dd3a81a7d8ca5f0ff4d
parented998bb6ade5c78ec5ba373a5266e193184fc6cc (diff)
downloadpx4-nuttx-af35036b945cb0f47c68bb47d9316500d12c6913.tar.gz
px4-nuttx-af35036b945cb0f47c68bb47d9316500d12c6913.tar.bz2
px4-nuttx-af35036b945cb0f47c68bb47d9316500d12c6913.zip
Add terminating NULL to argv[] list
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5055 42af7a65-404d-4744-a932-0658087f49c3
-rwxr-xr-xapps/ChangeLog.txt4
-rwxr-xr-xapps/netutils/thttpd/thttpd_cgi.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/apps/ChangeLog.txt b/apps/ChangeLog.txt
index 20895f07b..6c151ae50 100755
--- a/apps/ChangeLog.txt
+++ b/apps/ChangeLog.txt
@@ -280,3 +280,7 @@
configuration (from Richard Cochran).
6.22 2012-xx-xx Gregory Nutt <gnutt@nuttx.org>
+
+ * apps/netutils/thttpd/thttpd_cgi.c: Missing NULL in argv[]
+ list (contributed by Kate).
+
diff --git a/apps/netutils/thttpd/thttpd_cgi.c b/apps/netutils/thttpd/thttpd_cgi.c
index 3d2eb57b8..0c23a2587 100755
--- a/apps/netutils/thttpd/thttpd_cgi.c
+++ b/apps/netutils/thttpd/thttpd_cgi.c
@@ -988,7 +988,7 @@ errout:
int cgi(httpd_conn *hc)
{
char arg[16];
- char *argv[1];
+ char *argv[2];
pid_t child;
int retval = ERROR;
@@ -1019,6 +1019,7 @@ int cgi(httpd_conn *hc)
snprintf(arg, 16, "%p", hc); /* task_create doesn't handle binary arguments. */
argv[0] = arg;
+ argv[1] = NULL;
#ifndef CONFIG_CUSTOM_STACK
child = task_create("CGI child", CONFIG_THTTPD_CGI_PRIORITY,