Unused Value at packet-camel.c:7134 |
No properties have been set. edit properties |
Jump to warning location ↓ | warning details... |
| |
dissect_camel_arg (/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-camel.c)![]() | ||||||
![]() | ||||||
7117 | dissect_camel_arg(tvbuff_t *tvb _U_, packet_info *pinfo, proto_tree *tree _U_) { | |||||
7118 | int offset; | |||||
7119 | rose_ctx_t *rctx; | |||||
7120 | gint32 opcode; | |||||
7121 | /* | |||||
7122 | const camel_op_t *op_ptr; | |||||
7123 | const gchar *p; | |||||
7124 | proto_item *ti, *ti_tmp; | |||||
7125 | proto_tree *camel_tree; | |||||
7126 | */ | |||||
7127 | offset = 0; | |||||
7128 | rctx = get_rose_ctx(pinfo->private_data); | |||||
7129 | DISSECTOR_ASSERT(rctx); | |||||
7130 | if (rctx->d.pdu != 1) /* invoke */ | |||||
7131 | return offset; | |||||
7132 | if (rctx->d.code != 0) /* local */ | |||||
7133 | return offset; | |||||
7134 | opcode = rctx->d.code_local;
| |||||
7135 | ||||||
7136 | return offset; | |||||
7137 | } | |||||
![]() |