[SCTP] Export of reassembled PDU uses wrong tvb.

Change-Id: I87ff6ef54dff5900a4a92406c87693fec6d9f692
Reviewed-on: https://code.wireshark.org/review/24737
Reviewed-by: Anders Broman <a.broman58@gmail.com>
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
This commit is contained in:
AndersBroman 2017-12-08 16:01:33 +01:00 committed by Pascal Quantin
parent 8aa14236f8
commit 5d6315fefe
1 changed files with 1 additions and 1 deletions

View File

@ -3266,7 +3266,7 @@ dissect_fragmented_payload(tvbuff_t *payload_tvb, packet_info *pinfo, proto_tree
proto_name = proto_get_protocol_filter_name(proto_id);
if(strcmp(proto_name, "data") != 0){
if (have_tap_listener(exported_pdu_tap)){
export_sctp_data_chunk(pinfo,payload_tvb, proto_name);
export_sctp_data_chunk(pinfo, new_tvb, proto_name);
}
}
}