ISO14443: Fix Dead Store (Dead assignement/Dead increment) Warning found by Clang

Change-Id: I63f0b3891030ccc001f81fde94121adad37b555b
Reviewed-on: https://code.wireshark.org/review/12004
Reviewed-by: Martin Kaiser <wireshark@kaiser.cx>
This commit is contained in:
Alexis La Goutte 2015-11-21 09:00:35 +01:00 committed by Martin Kaiser
parent fb11b8a8e2
commit f711fbfae4
1 changed files with 1 additions and 1 deletions

View File

@ -533,7 +533,7 @@ dissect_iso14443_cmd_type_attrib(tvbuff_t *tvb, packet_info *pinfo,
}
}
return tvb_captured_length(tvb);
return offset;
}