Huge thanks to our Platinum Members Endace and LiveAction,
and our Silver Member Veeam, for supporting the Wireshark Foundation and project.

Wireshark-bugs: [Wireshark-bugs] [Bug 2407] wshark crashes expert info composite

Date: Wed, 9 Apr 2008 19:41:15 +0000 (GMT)
http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2407





--- Comment #13 from Jeff Morriss <jeff.morriss.ws@xxxxxxxxx>  2008-04-09 19:41:11 GMT ---
Oops, that was a bad "typo" on my part (I'm the one who broke the code).  This:

 last = ldap_info;
 ldap_info = ldap_info->next;    
 g_free(ldap_info);

Should have read:

 last = ldap_info;
 ldap_info = ldap_info->next;    
 g_free(last); <<< actually use the 'last' pointer I had saved

(sigh).  Anyway this patch does the same thing.


-- 
Configure bugmail: http://bugs.wireshark.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.