diff options
author | Michael Adam <obnox@samba.org> | 2007-12-25 03:35:00 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2007-12-25 03:35:00 +0100 |
commit | c2ab4bd70599cd7ff2043fef9904da178e6e4d19 (patch) | |
tree | 19e81c06471e5ebfb76d133472dc4154ef68708a | |
parent | 44631bfd4d418cbf1ca4309057e6161cdce50bd4 (diff) | |
download | samba-c2ab4bd70599cd7ff2043fef9904da178e6e4d19.tar.gz samba-c2ab4bd70599cd7ff2043fef9904da178e6e4d19.tar.bz2 samba-c2ab4bd70599cd7ff2043fef9904da178e6e4d19.zip |
Add two missing free-s.
Michael
(This used to be commit 4efac39c363d565c2c7211da73d5e1cf2ac3d0b2)
-rw-r--r-- | source3/utils/net_conf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/utils/net_conf.c b/source3/utils/net_conf.c index 5dc1eb06f4..df85d7eb4b 100644 --- a/source3/utils/net_conf.c +++ b/source3/utils/net_conf.c @@ -875,6 +875,8 @@ static int net_conf_delparm(int argc, const char **argv) ret = 0; done: + SAFE_FREE(service); + SAFE_FREE(param); return ret; } |