diff options
author | Volker Lendecke <vl@samba.org> | 2008-06-20 16:22:32 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-06-21 10:34:34 +0200 |
commit | c203de0e3a6f5b2254bc5c308cf87e6a7b67cad8 (patch) | |
tree | 0d64dcd405dc7f693cd0908814ec7fb238fbf50e /source3/rpc_server | |
parent | accc68f63e91e8684d7186fa718bd51e2e4e8922 (diff) | |
download | samba-c203de0e3a6f5b2254bc5c308cf87e6a7b67cad8.tar.gz samba-c203de0e3a6f5b2254bc5c308cf87e6a7b67cad8.tar.xz samba-c203de0e3a6f5b2254bc5c308cf87e6a7b67cad8.zip |
Fix a SAFE_FREE/TALLOC_FREE mixup
(This used to be commit b39852f51313059899630ba63509fee904ba3613)
Diffstat (limited to 'source3/rpc_server')
-rw-r--r-- | source3/rpc_server/srv_pipe_hnd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_server/srv_pipe_hnd.c b/source3/rpc_server/srv_pipe_hnd.c index 1d62199ad88..2e03d01c930 100644 --- a/source3/rpc_server/srv_pipe_hnd.c +++ b/source3/rpc_server/srv_pipe_hnd.c @@ -221,7 +221,7 @@ smb_np_struct *open_rpc_pipe_p(const char *pipe_name, if (p->np_state == NULL) { DEBUG(0,("open_rpc_pipe_p: make_internal_rpc_pipe_p failed.\n")); - SAFE_FREE(p); + TALLOC_FREE(p); return NULL; } |