The Samba-Bugzilla – Attachment 489 Details for
Bug 1309
Signal 11 panic smbd crash
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
fix missing check for NULL pointer before copy
look (text/plain), 444 bytes, created by
Gerald (Jerry) Carter (dead mail address)
on 2004-05-04 19:57:17 UTC
(
hide
)
Description:
fix missing check for NULL pointer before copy
Filename:
MIME Type:
Creator:
Gerald (Jerry) Carter (dead mail address)
Created:
2004-05-04 19:57:17 UTC
Size:
444 bytes
patch
obsolete
>Index: smbd/password.c >=================================================================== >--- smbd/password.c (revision 484) >+++ smbd/password.c (working copy) >@@ -488,7 +488,11 @@ > /* now check the list of session users */ > if (!ok) { > char *auser; >- char *user_list = strdup(session_userlist); >+ char *user_list = NULL; >+ >+ if ( session_userlist ) >+ user_list = strdup(session_userlist); >+ > if (!user_list) > return(False); >
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 1309
:
486
|
487
| 489 |
494