MBIM: use conversation as identifier in reassembly code

Change-Id: I43a5fd81e1faba15d5491e12acb3c4dcda04ccab
Reviewed-on: https://code.wireshark.org/review/33640
Petri-Dish: Pascal Quantin <pascal@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Pascal Quantin <pascal@wireshark.org>
This commit is contained in:
Pascal Quantin 2019-06-18 09:41:18 +02:00
parent 6b20a4f2d6
commit 45b1ea1fdf
1 changed files with 2 additions and 2 deletions

View File

@ -5063,7 +5063,7 @@ dissect_mbim_control(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *
offset += 4;
if (total_frag > 1) {
frag_data = fragment_add_seq_check(&mbim_reassembly_table, tvb, offset, pinfo,
trans_id, NULL, current_frag,
trans_id, mbim_conv, current_frag,
tvb_reported_length_remaining(tvb, offset),
(current_frag != (total_frag-1)));
frag_tvb = process_reassembled_data(tvb, offset, pinfo, "Reassembled MBIM control message",
@ -5923,7 +5923,7 @@ dissect_mbim_control(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *
offset += 4;
if (total_frag > 1) {
frag_data = fragment_add_seq_check(&mbim_reassembly_table, tvb, offset, pinfo,
trans_id, NULL, current_frag,
trans_id, mbim_conv, current_frag,
tvb_reported_length_remaining(tvb, offset),
(current_frag != (total_frag-1)));
frag_tvb = process_reassembled_data(tvb, offset, pinfo, "Reassembled MBIM control message",