summaryrefslogtreecommitdiff
path: root/source4/smb_server/smb/reply.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-03-06 15:38:07 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:52:19 -0500
commit0533fed85adefc9aa74b6d5ae6b4293fb9c11d6a (patch)
tree8ed63337a6763ae1f40d4a6fc73e29dfd20649c6 /source4/smb_server/smb/reply.c
parentf6457b3d5408d5afe9a4de96d7623f1aa9ec39c4 (diff)
downloadsamba-0533fed85adefc9aa74b6d5ae6b4293fb9c11d6a.tar.gz
samba-0533fed85adefc9aa74b6d5ae6b4293fb9c11d6a.tar.bz2
samba-0533fed85adefc9aa74b6d5ae6b4293fb9c11d6a.zip
r13868: remove useless talloc_free() wrapper
metze (This used to be commit bd3162e6a7f154630c2d88be70ce19e8dd977133)
Diffstat (limited to 'source4/smb_server/smb/reply.c')
-rw-r--r--source4/smb_server/smb/reply.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/smb_server/smb/reply.c b/source4/smb_server/smb/reply.c
index a5665d3525..3c92c6f6a5 100644
--- a/source4/smb_server/smb/reply.c
+++ b/source4/smb_server/smb/reply.c
@@ -1759,7 +1759,7 @@ static void reply_lockingX_send(struct smbsrv_request *req)
/* if it was an oplock break ack then we only send a reply if
there was an error */
if (lck->lockx.in.ulock_cnt + lck->lockx.in.lock_cnt == 0) {
- req_destroy(req);
+ talloc_free(req);
return;
}
@@ -2336,7 +2336,7 @@ void smbsrv_reply_ntcancel(struct smbsrv_request *req)
{
/* NOTE: this request does not generate a reply */
ntvfs_cancel(req);
- req_destroy(req);
+ talloc_free(req);
}
/****************************************************************************
@@ -2452,10 +2452,10 @@ void smbsrv_reply_special(struct smbsrv_request *req)
case SMBkeepalive:
/* session keepalive - swallow it */
- req_destroy(req);
+ talloc_free(req);
return;
}
DEBUG(0,("Unexpected NBT session packet (%d)\n", msg_type));
- req_destroy(req);
+ talloc_free(req);
}