Ethereal-dev: [Ethereal-dev] Bug in packet-stun.c

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

Date: Sun, 4 Jan 2004 12:19:52 +0800
Christian just found a bug in packet-stun.c line 257.
"offset+2" should be replaced by "offset+4". The corrected code is:

proto_tree_add_item(att_tree, stun_att_length, tvb, offset+4, att_length, FALSE);

Shiang-Ming