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.