diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-04-24 11:07:41 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-04-24 11:07:41 +0000 |
commit | 3df8df720a35269b0aa69d3cc4fd7288b5445aa0 (patch) | |
tree | a913b6f17e9ca741f5383958e07c79d01d2c01a3 /package/uhttpd/src/uhttpd-cgi.c | |
parent | e9dcaa6a1394c41d34ab2db49eb8e7df52347130 (diff) | |
download | upstream-3df8df720a35269b0aa69d3cc4fd7288b5445aa0.tar.gz upstream-3df8df720a35269b0aa69d3cc4fd7288b5445aa0.tar.bz2 upstream-3df8df720a35269b0aa69d3cc4fd7288b5445aa0.zip |
uhttpd: - ignore authentication realms that refer to user accounts with no password set yet (X-Wrt compatibility) - fix off-by-one in CGI header parsing, fixes cgi programs that emit bad header lines (AsteriskGUI compatibility) - bump version
SVN-Revision: 21121
Diffstat (limited to 'package/uhttpd/src/uhttpd-cgi.c')
-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 1a6c6ad4fe..855a72f569 100644 --- a/package/uhttpd/src/uhttpd-cgi.c +++ b/package/uhttpd/src/uhttpd-cgi.c @@ -68,7 +68,7 @@ static struct http_response * uh_cgi_header_parse(char *buf, int len, int *off) if( (pos < len) && (buf[pos] == '\n') ) pos++; - if( pos < len ) + if( pos <= len ) { if( (hdrcount + 1) < array_size(res.headers) ) { |