diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-17 18:26:57 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-17 18:26:57 +0000 |
commit | a5342b4541c9c6b350ca015b94c7fd00d125e088 (patch) | |
tree | b45740cf52581d5cc9a3da90f1cc21b03ad40343 | |
parent | 8bfd215fb259dbf16b6c30f5853840d319a7555f (diff) | |
download | busybox-w32-a5342b4541c9c6b350ca015b94c7fd00d125e088.tar.gz busybox-w32-a5342b4541c9c6b350ca015b94c7fd00d125e088.tar.bz2 busybox-w32-a5342b4541c9c6b350ca015b94c7fd00d125e088.zip |
httpd: make Bernhard happier
-rw-r--r-- | networking/httpd.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/networking/httpd.c b/networking/httpd.c index 3cfbdb979..d5cfd652c 100644 --- a/networking/httpd.c +++ b/networking/httpd.c | |||
@@ -1659,9 +1659,11 @@ FORBIDDEN: /* protect listing /cgi-bin */ | |||
1659 | #if ENABLE_FEATURE_HTTPD_CGI | 1659 | #if ENABLE_FEATURE_HTTPD_CGI |
1660 | free(cookie); | 1660 | free(cookie); |
1661 | free(content_type); | 1661 | free(content_type); |
1662 | free(config->referer); config->referer = NULL; | 1662 | free(config->referer); |
1663 | config->referer = NULL; | ||
1663 | # if ENABLE_FEATURE_HTTPD_BASIC_AUTH | 1664 | # if ENABLE_FEATURE_HTTPD_BASIC_AUTH |
1664 | free(config->remoteuser); config->remoteuser = NULL; | 1665 | free(config->remoteuser); |
1666 | config->remoteuser = NULL; | ||
1665 | # endif | 1667 | # endif |
1666 | #endif | 1668 | #endif |
1667 | shutdown(config->accepted_socket, SHUT_WR); | 1669 | shutdown(config->accepted_socket, SHUT_WR); |