]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
Fix a SAFE_FREE/TALLOC_FREE mixup
authorVolker Lendecke <vl@samba.org>
Fri, 20 Jun 2008 14:22:32 +0000 (16:22 +0200)
committerVolker Lendecke <vl@samba.org>
Sat, 21 Jun 2008 08:34:34 +0000 (10:34 +0200)
source/rpc_server/srv_pipe_hnd.c

index 1d62199ad88c80d3483c74550aea69e80d864ea4..2e03d01c93076610c854e9cd842e2e44c810e24f 100644 (file)
@@ -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;
        }