diff options
author | Volker Lendecke <vl@samba.org> | 2008-01-12 21:09:43 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-01-12 21:09:43 +0100 |
commit | 18083f1d88f3cfade68587f9289fa709c229e1d0 (patch) | |
tree | 6f17ab8ca7f58fcde37ee4bcbb36aaee553d9977 /source3 | |
parent | ec412b60ea6d6a4e0fd2e03ca9299b4264483c0c (diff) | |
download | samba-18083f1d88f3cfade68587f9289fa709c229e1d0.tar.gz samba-18083f1d88f3cfade68587f9289fa709c229e1d0.tar.bz2 samba-18083f1d88f3cfade68587f9289fa709c229e1d0.zip |
Get the inbuf on talloc_tos()
(This used to be commit 883f7415769ad1e714f636e9d6fbd1f075e69d1e)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/process.c b/source3/smbd/process.c index 2d3cf7fbd8..a5bdb96650 100644 --- a/source3/smbd/process.c +++ b/source3/smbd/process.c @@ -2085,7 +2085,7 @@ void smbd_process(void) run_events(smbd_event_context(), 0, NULL, NULL); - while (!receive_message_or_smb(NULL, &inbuf, &inbuf_len, + while (!receive_message_or_smb(talloc_tos(), &inbuf, &inbuf_len, select_timeout, &unread_bytes, &encrypted)) { |