(/home/sate/Testcases/c/cve/wireshark-1.2.0/plugins/profinet/packet-dcom-cba-acco.c) |
| |
| 4275 | | | dissect_ICBAAccoMgt_put_PingFactor_rqst(tvbuff_t *tvb, int offset, |
| 4276 | | | packet_info *pinfo, proto_tree *tree, guint8 *drep) |
| 4277 | | | { |
| 4278 | | | guint16 u16PF; |
| 4279 | | | |
| 4280 | | | |
| 4281 | | | offset = dissect_dcom_this(tvb, offset, pinfo, tree, drep); |
| 4282 | | | |
| 4283 | | | offset = dissect_dcom_WORD(tvb, offset, pinfo, tree, drep, |
| 4284 | [+] | | hf_cba_acco_ping_factor, &u16PF); |
Event 1:
dissect_ndr_uint16() does not initialize u16PF. - This may be because of a failure case or other special case for dissect_ndr_uint16().
hide
|
|
 |
| 4285 | | | |
| 4286 | | | if (check_col(pinfo->cinfo, COL_INFO)) |
Event 3:
Taking true branch. check_col(...) evaluates to true.
hide
|
|
| 4287 | | | col_append_fstr(pinfo->cinfo, COL_INFO, ": %u", u16PF); |
Uninitialized Variable
u16PF was not initialized. The issue can occur if the highlighted code executes. See related event 1. Show: All events | Only primary events |
|
| |