The Samba-Bugzilla – Attachment 3066 Details for
Bug 3617
nmbd crashes with signal 11 if another server announces itself as a local master browser
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
proposed patch
3617.diff (text/plain), 921 bytes, created by
Volker Lendecke
on 2007-12-21 06:34:36 UTC
(
hide
)
Description:
proposed patch
Filename:
MIME Type:
Creator:
Volker Lendecke
Created:
2007-12-21 06:34:36 UTC
Size:
921 bytes
patch
obsolete
>commit 3eecf514a5dfe37b1ceac9164239b699279a9aa9 >Author: Volker Lendecke <vl@samba.org> >Date: Fri Dec 21 13:31:47 2007 +0100 > > Potential fix for bug 3617 > > Before I dig into this manual linked list stuff, better do it with the know > macro > >diff --git a/source/nmbd/nmbd_responserecordsdb.c b/source/nmbd/nmbd_responserecordsdb.c >index 22a038e..1d99ad2 100644 >--- a/source/nmbd/nmbd_responserecordsdb.c >+++ b/source/nmbd/nmbd_responserecordsdb.c >@@ -60,13 +60,7 @@ static void add_response_record(struct subnet_record *subrec, > void remove_response_record(struct subnet_record *subrec, > struct response_record *rrec) > { >- if (rrec->prev) >- rrec->prev->next = rrec->next; >- if (rrec->next) >- rrec->next->prev = rrec->prev; >- >- if (subrec->responselist == rrec) >- subrec->responselist = rrec->next; >+ DLIST_REMOVE(subrec->responselist, rrec); > > if(rrec->userdata) { > if(rrec->userdata->free_fn) {
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 3617
:
1812
|
1844
|
1969
|
2915
|
2916
|
2917
|
3021
|
3065
| 3066 |
3070
|
3086
|
3154
|
3155
|
3156
|
3157