aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-11-17 18:26:57 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-11-17 18:26:57 +0000
commit85f0978efd4641525ebcc47aa7c25aa8898241d7 (patch)
treeb45740cf52581d5cc9a3da90f1cc21b03ad40343
parent43fdfa1f76c66c8362598f1a593664e6b86c9ca3 (diff)
downloadbusybox-w32-85f0978efd4641525ebcc47aa7c25aa8898241d7.tar.gz
busybox-w32-85f0978efd4641525ebcc47aa7c25aa8898241d7.tar.bz2
busybox-w32-85f0978efd4641525ebcc47aa7c25aa8898241d7.zip
httpd: make Bernhard happier
git-svn-id: svn://busybox.net/trunk/busybox@16568 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--networking/httpd.c6
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);