Get rid of a duplicate call.

svn path=/trunk/; revision=19636
This commit is contained in:
Guy Harris 2006-10-20 18:49:02 +00:00
parent b6e73ed047
commit cc52fa035d
1 changed files with 0 additions and 1 deletions

View File

@ -1572,7 +1572,6 @@ add_tagged_field (packet_info * pinfo, proto_tree * tree, tvbuff_t * tvb, int of
"Tag length %u too short, must be > 0", tag_len);
break;
}
tag_data_ptr = tvb_get_ptr (tvb, offset + 2, tag_len);
tag_data_ptr = tvb_get_ptr (tvb, offset + 2, tag_len);
for (i = 0, n = 0; i < tag_len && n < SHORT_STR; i++) {