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 /networking | |
parent | 8bfd215fb259dbf16b6c30f5853840d319a7555f (diff) | |
download | busybox-a5342b4541c9c6b350ca015b94c7fd00d125e088.tar.gz |
httpd: make Bernhard happier
Diffstat (limited to 'networking')
-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 */ #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); |