The Samba-Bugzilla – Attachment 4070 Details for
Bug 6263
Domain login problems in Windows XP without SP3
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch for 3.2.x.
look (text/plain), 770 bytes, created by
Jeremy Allison
on 2009-04-15 19:02:47 UTC
(
hide
)
Description:
Patch for 3.2.x.
Filename:
MIME Type:
Creator:
Jeremy Allison
Created:
2009-04-15 19:02:47 UTC
Size:
770 bytes
patch
obsolete
>diff --git a/source/rpc_server/srv_lsa_nt.c b/source/rpc_server/srv_lsa_nt.c >index 9d411ec..fd6cdfa 100644 >--- a/source/rpc_server/srv_lsa_nt.c >+++ b/source/rpc_server/srv_lsa_nt.c >@@ -830,7 +830,15 @@ NTSTATUS _lsa_LookupSids(pipes_struct *p, > &names, > &mapped_count); > >- if (NT_STATUS_IS_ERR(status)) { >+ /* Only return here when there is a real error. >+ NT_STATUS_NONE_MAPPED is a special case as it indicates that none of >+ the requested sids could be resolved. Older versions of XP (pre SP3) >+ rely that we return with the string representations of those SIDs in >+ that case. If we don't, XP crashes - Guenther >+ */ >+ >+ if (NT_STATUS_IS_ERR(status) && >+ !NT_STATUS_EQUAL(status, NT_STATUS_NONE_MAPPED)) { > return status; > } >
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 6263
:
4067
| 4070