(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-ansi_683.c) |
| |
| 4096 | | | |
| 4097 | | | if (block_len > (len - (offset - saved_offset))) |
| 4098 | | | { |
| 4099 | | | proto_tree_add_none_format(subtree, hf_ansi_683_none, tvb, |
| 4100 | | | offset, len - (offset - saved_offset), "Short Data (?)"); |
| 4101 | | | return; |
| 4102 | | | } |
| 4103 | | | |
| 4104 | | | if (block_len > 0) |
| 4105 | | | { |
| 4106 | | | switch (block_id) |
Empty switch Statement
Body of switch has no effect. This warning could be triggered if: - the body contains no code, or
- all cases share the same code, or
- the body is removed by the preprocessor, or
- all the macros used in the body expand to nothing.
|
|
| 4107 | | | { |
| 4108 | | | #ifdef MLUM |
| 4109 | | | case REV_TYPE_CAP_INFO_OP_MODE: |
| 4110 | | | case REV_TYPE_CAP_INFO_CDMA_BAND: |
| 4111 | | | case REV_TYPE_CAP_INFO_MEID: |
| 4112 | | | case REV_TYPE_CAP_INFO_ICCID: |
| 4113 | | | case REV_TYPE_CAP_INFO_EXT_UIM_ID: |
| 4114 | | | rev_param_block_mmd_app(tvb, subtree, block_len, offset); |
| 4115 | | | break; |
| 4116 | | | #endif |
| |