Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-11-17 21:26:57 +0300
committerDenis Vlasenko <vda.linux@googlemail.com>2006-11-17 21:26:57 +0300
commita5342b4541c9c6b350ca015b94c7fd00d125e088 (patch)
treeb45740cf52581d5cc9a3da90f1cc21b03ad40343 /networking
parent8bfd215fb259dbf16b6c30f5853840d319a7555f (diff)
httpd: make Bernhard happier
Diffstat (limited to 'networking')
-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 */
#if ENABLE_FEATURE_HTTPD_CGI
free(cookie);
free(content_type);
- free(config->referer); config->referer = NULL;
+ free(config->referer);
+ config->referer = NULL;
# if ENABLE_FEATURE_HTTPD_BASIC_AUTH
- free(config->remoteuser); config->remoteuser = NULL;
+ free(config->remoteuser);
+ config->remoteuser = NULL;
# endif
#endif
shutdown(config->accepted_socket, SHUT_WR);