diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-09-18 23:34:25 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-09-18 23:34:25 +0000 |
commit | a3c71fc56c1c31e01e17a7f3d82c595fc274cb20 (patch) | |
tree | f2a053817930cbcefe982dca709bba4104b38de9 | |
parent | 65866b3bba7edb9612f147f390ad5d0bce767df4 (diff) | |
download | upstream-a3c71fc56c1c31e01e17a7f3d82c595fc274cb20.tar.gz upstream-a3c71fc56c1c31e01e17a7f3d82c595fc274cb20.tar.bz2 upstream-a3c71fc56c1c31e01e17a7f3d82c595fc274cb20.zip |
[package] uhttpd: fix bad pointer use in previous commit
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28257 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/uhttpd/src/uhttpd-cgi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/uhttpd/src/uhttpd-cgi.c b/package/uhttpd/src/uhttpd-cgi.c index 2f94fe26f5..16bfda7dba 100644 --- a/package/uhttpd/src/uhttpd-cgi.c +++ b/package/uhttpd/src/uhttpd-cgi.c @@ -42,7 +42,7 @@ static struct http_response * uh_cgi_header_parse(char *buf, int len, int *off) bufptr = &buf[0]; - for( pos = 0; pos < off; pos++ ) + for( pos = 0; pos < *off; pos++ ) { if( !hdrname && (buf[pos] == ':') ) { |