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 12497] ddict_free() doesn't freeze everything

Date: Tue, 07 Jun 2016 21:26:24 +0000

changed bug 12497


What Removed Added
Status UNCONFIRMED CONFIRMED
Summary bug in diam_dict.c (diam_dict.l) in the source code of wireshark ddict_free() doesn't freeze everything
Ever confirmed   1
OS Ubuntu All
Severity Major Minor

Comment # 1 on bug 12497 from
ddict_free() is calling g_free() on some pointers only if the pointers are
null, not if they're non-null, and thus not freeing what those pointers point
to.

free() and g_free() will do nothing when passed null pointers, so the pointer
check can either be fixed (by removing the !) or simply removed.

As Jeff Morriss points out, ddict_free() is never called, so this bug currently
has no effect.  Lowering the priority as a result.


You are receiving this mail because:
  • You are watching all bug changes.