summaryrefslogtreecommitdiff
path: root/source3/web/cgi.c
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2001-09-17 11:48:29 +0000
committerSimo Sorce <idra@samba.org>2001-09-17 11:48:29 +0000
commitc0ef0e113e8d3117891b4b137f660ca3c4c6b1f0 (patch)
treeb1a191b7c5b57921b1c3229ba8e672dcc2ce1338 /source3/web/cgi.c
parent2d6a3079b805a57f5618c97fff2adda77de934f4 (diff)
downloadsamba-c0ef0e113e8d3117891b4b137f660ca3c4c6b1f0.tar.gz
samba-c0ef0e113e8d3117891b4b137f660ca3c4c6b1f0.tar.bz2
samba-c0ef0e113e8d3117891b4b137f660ca3c4c6b1f0.zip
move to SAFE_FREE()
(This used to be commit 67db8f03c5c9e81e11b5f3276b50ee23e09a2659)
Diffstat (limited to 'source3/web/cgi.c')
-rw-r--r--source3/web/cgi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/web/cgi.c b/source3/web/cgi.c
index 88f4d3f36f..3547379084 100644
--- a/source3/web/cgi.c
+++ b/source3/web/cgi.c
@@ -168,7 +168,7 @@ void cgi_load_variables(FILE *f1)
variables[num_variables].name = strdup(line);
variables[num_variables].value = strdup(p+1);
- free(line);
+ SAFE_FREE(line);
if (!variables[num_variables].name ||
!variables[num_variables].value)