Wireshark-bugs: [Wireshark-bugs] [Bug 10542] dissection of sid28 shouldn't show expert info if t
Date: Wed, 08 Oct 2014 18:33:21 +0000

changed bug 10542


What Removed Added
CC   pascal.quantin@gmail.com

Comment # 4 on bug 10542 from
Presumably we should check that tree is not null before deferencing it and
replace the line:
item = proto_tree_get_parent(tree->last_child);
By
item = proto_tree_get_parent(tree? tree->last_child : NULL);
Assuming that proto_tree_get_parent accepts a NULL parameter (I do not have
access to the code but from what Evan says it seems to be the case).


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