The Samba-Bugzilla – Attachment 11424 Details for
Bug 11509
libsmbclient : crash when the DFS targets are disabled
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Probable fix for the crash when dfs targets are disabled
0001-Fix-a-crash-when-the-dfs-targets-are-disabled.patch (text/plain), 901 bytes, created by
hargagan
on 2015-09-10 10:48:19 UTC
(
hide
)
Description:
Probable fix for the crash when dfs targets are disabled
Filename:
MIME Type:
Creator:
hargagan
Created:
2015-09-10 10:48:19 UTC
Size:
901 bytes
patch
obsolete
>From 96ba682d537db198ea8f954ecad190bb7500b82c Mon Sep 17 00:00:00 2001 >From: Har Gagan Sahai <SHarGagan@novell.com> >Date: Thu, 10 Sep 2015 16:04:27 +0530 >Subject: [PATCH] Fix a crash when the dfs targets are disabled. > >Signed-off-by: Har Gagan Sahai <SHarGagan@novell.com> >--- > source3/libsmb/clidfs.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > >diff --git a/source3/libsmb/clidfs.c b/source3/libsmb/clidfs.c >index bd587bc..ceaa8ad 100644 >--- a/source3/libsmb/clidfs.c >+++ b/source3/libsmb/clidfs.c >@@ -958,11 +958,12 @@ NTSTATUS cli_resolve_path(TALLOC_CTX *ctx, > > status = cli_dfs_get_referral(ctx, cli_ipc, dfs_path, &refs, > &num_refs, &consumed); >- if (!NT_STATUS_IS_OK(status) || !num_refs) { >+ if (!NT_STATUS_IS_OK(status)) { > return status; > } > >- if (!refs[0].dfspath) { >+ if (!num_refs || !refs[0].dfspath) { >+ > return NT_STATUS_NOT_FOUND; > } > >-- >1.8.4.5 >
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 11509
:
11423
|
11424
|
11431
|
11448