From myself and Julian Cable via (and fixing)

https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8717

Don't add a DCP-ETSI fragment for reassembly if the length is wrong.


svn path=/trunk/; revision=49802
This commit is contained in:
Evan Huus 2013-06-06 02:53:36 +00:00
parent 57fc882623
commit de3f2847f1
1 changed files with 2 additions and 1 deletions

View File

@ -518,9 +518,10 @@ dissect_pft(tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree)
if(li)
proto_item_append_text(li, " (length error (%d))", real_len);
}
if (real_len)
else {
next_tvb = dissect_pft_fragmented(tvb, pinfo, pft_tree, findex, fcount,
seq, offset, real_len, fec, rsk, rsz);
}
pinfo->fragmented = save_fragmented;
} else {
next_tvb = tvb_new_subset_remaining (tvb, offset);