The Samba-Bugzilla – Attachment 2751 Details for
Bug 4689
"New Folder" created twice - notify bug?
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
look (text/plain), 2.58 KB, created by
Jeremy Allison
on 2007-06-12 17:02:46 UTC
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Jeremy Allison
Created:
2007-06-12 17:02:46 UTC
Size:
2.58 KB
patch
obsolete
>Index: smbd/nttrans.c >=================================================================== >--- smbd/nttrans.c (revision 23444) >+++ smbd/nttrans.c (working copy) >@@ -1979,8 +1979,7 @@ > * here. > */ > >- change_notify_reply(inbuf, max_param_count, >- fsp->notify); >+ change_notify_reply(inbuf, fsp->notify); > > /* > * change_notify_reply() above has independently sent its >@@ -1993,8 +1992,7 @@ > * No changes pending, queue the request > */ > >- status = change_notify_add_request(inbuf, max_param_count, filter, >- recursive, fsp); >+ status = change_notify_add_request(inbuf, filter, recursive, fsp); > if (!NT_STATUS_IS_OK(status)) { > return ERROR_NT(status); > } >Index: smbd/notify.c >=================================================================== >--- smbd/notify.c (revision 23444) >+++ smbd/notify.c (working copy) >@@ -27,7 +27,6 @@ > struct files_struct *fsp; /* backpointer for cancel by mid */ > char request_buf[smb_size]; > uint32 filter; >- uint32 max_param_count; > uint32 current_bufsize; > struct notify_mid_map *mid_map; > void *backend_data; >@@ -126,12 +125,12 @@ > "failed."); > } > >-void change_notify_reply(const char *request_buf, uint32 max_param_count, >+void change_notify_reply(const char *request_buf, > struct notify_change_buf *notify_buf) > { > char *outbuf = NULL; > prs_struct ps; >- size_t buflen = smb_size+38+max_param_count; >+ size_t buflen; > > if (notify_buf->num_changes == -1) { > change_notify_reply_packet(request_buf, NT_STATUS_OK); >@@ -145,14 +144,7 @@ > goto done; > } > >- if (prs_offset(&ps) > max_param_count) { >- /* >- * We exceed what the client is willing to accept. Send >- * nothing. >- */ >- change_notify_reply_packet(request_buf, NT_STATUS_OK); >- goto done; >- } >+ buflen = smb_size+38+prs_offset(&ps) + 4 /* padding */; > > if (!(outbuf = SMB_MALLOC_ARRAY(char, buflen))) { > change_notify_reply_packet(request_buf, NT_STATUS_NO_MEMORY); >@@ -214,7 +206,7 @@ > return status; > } > >-NTSTATUS change_notify_add_request(const char *inbuf, uint32 max_param_count, >+NTSTATUS change_notify_add_request(const char *inbuf, > uint32 filter, BOOL recursive, > struct files_struct *fsp) > { >@@ -231,7 +223,6 @@ > map->req = request; > > memcpy(request->request_buf, inbuf, sizeof(request->request_buf)); >- request->max_param_count = max_param_count; > request->current_bufsize = 0; > request->filter = filter; > request->fsp = fsp; >@@ -408,7 +399,6 @@ > */ > > change_notify_reply(fsp->notify->requests->request_buf, >- fsp->notify->requests->max_param_count, > fsp->notify); > > change_notify_remove_request(fsp->notify->requests);
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 4689
:
2749
|
2750
| 2751