diff options
author | Volker Lendecke <vl@samba.org> | 2013-05-07 10:17:26 +0200 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2013-05-16 13:37:40 +0200 |
commit | 51533eedd7fa162bf8113f1f551064c01741e40e (patch) | |
tree | 214995df9548cec4e6b621b1abca61d8f56b4258 /source4/winbind | |
parent | 7ff3cbdabf8be6c323e1b5e9d68e0370d32f574e (diff) | |
download | samba-51533eedd7fa162bf8113f1f551064c01741e40e.tar.gz samba-51533eedd7fa162bf8113f1f551064c01741e40e.tar.bz2 samba-51533eedd7fa162bf8113f1f551064c01741e40e.zip |
winbind4: Fix bug 9832 -- talloc use after free
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Autobuild-User(master): Jeremy Allison <jra@samba.org>
Autobuild-Date(master): Thu May 16 13:37:41 CEST 2013 on sn-devel-104
Diffstat (limited to 'source4/winbind')
-rw-r--r-- | source4/winbind/wb_server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/winbind/wb_server.c b/source4/winbind/wb_server.c index 335bdbcad7..983f9f56a0 100644 --- a/source4/winbind/wb_server.c +++ b/source4/winbind/wb_server.c @@ -56,7 +56,7 @@ static void wbsrv_call_loop(struct tevent_req *subreq) if (!NT_STATUS_IS_OK(status)) { const char *reason; - reason = talloc_asprintf(call, "wbsrv_call_loop: " + reason = talloc_asprintf(wbsrv_conn, "wbsrv_call_loop: " "tstream_read_pdu_blob_recv() - %s", nt_errstr(status)); if (!reason) { |