The Samba-Bugzilla – Attachment 7448 Details for
Bug 8853
SIGABRT in source4/librpc/rpc/dcerpc_smb.c:smb_trans_callback/pipe_dead
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
patch proposal to handle smb == NULL in pipe_dead
pipe_dead_check_smb_NULL.patch (text/plain), 656 bytes, created by
Arvid Requate
on 2012-04-10 14:01:18 UTC
(
hide
)
Description:
patch proposal to handle smb == NULL in pipe_dead
Filename:
MIME Type:
Creator:
Arvid Requate
Created:
2012-04-10 14:01:18 UTC
Size:
656 bytes
patch
obsolete
>--- samba4-4.0.0~alpha17~git201110100928/source4/librpc/rpc/dcerpc_smb.c.orig 2012-02-18 15:23:58.000000000 +0100 >+++ samba4-4.0.0~alpha17~git201110100928/source4/librpc/rpc/dcerpc_smb.c 2012-02-18 15:43:03.000000000 +0100 >@@ -41,7 +41,12 @@ > */ > static void pipe_dead(struct dcecli_connection *c, NTSTATUS status) > { >- struct smb_private *smb = (struct smb_private *)c->transport.private_data; >+ struct smb_private *smb = talloc_get_type(c->transport.private_data, struct smb_private); >+ if (smb == NULL) { >+ DEBUG(4,("pipe_dead: transport private smb information NULL after %s\n", >+ nt_errstr(status))); >+ return; >+ } > > if (smb->dead) { > return;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 8853
:
7447
| 7448