GIOP: Fix Dead Store (Dead assignement/Dead increment) warning found by Clang

Change-Id: I5cd8fe72e6288578d4fa316096dfa606bf3e7aea
Reviewed-on: https://code.wireshark.org/review/8116
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Alexis La Goutte 2015-04-18 15:56:58 +02:00 committed by Anders Broman
parent 4b65a8dcd3
commit 735f08a051
1 changed files with 0 additions and 3 deletions

View File

@ -4822,9 +4822,6 @@ static int dissect_giop_common (tvbuff_t * tvb, packet_info * pinfo, proto_tree
payload_tvb = tvb_new_subset_remaining (tvb, GIOP_HEADER_SIZE);
}
message_type = header.message_type;
if(giop_reassemble) {
/* This is a fragmented message - try and put it back together */
fragment_head *fd_head = NULL;