(/home/sate/Testcases/c/cve/wireshark-1.2.0/plugins/profinet/packet-dcom-cba.c) |
| |
| 309 | | | dissect_ICBABrowse2_get_Count2_rqst(tvbuff_t *tvb, int offset, |
| 310 | | | packet_info *pinfo, proto_tree *tree, guint8 *drep) |
| 311 | | | { |
| 312 | | | guint32 u32Selector; |
| 313 | | | |
| 314 | | | |
| 315 | | | offset = dissect_dcom_this(tvb, offset, pinfo, tree, drep); |
| 316 | | | |
| 317 | | | offset = dissect_dcom_DWORD(tvb, offset, pinfo, tree, drep, |
| 318 | [+] | | hf_cba_browse_selector, &u32Selector); |
Event 1:
dissect_ndr_uint32() does not initialize u32Selector. - This may be because of a failure case or other special case for dissect_ndr_uint32().
hide
|
|
 |
| 319 | | | |
| 320 | | | if (check_col(pinfo->cinfo, COL_INFO)) |
Event 3:
Taking true branch. check_col(...) evaluates to true.
hide
|
|
| 321 | | | col_append_fstr(pinfo->cinfo, COL_INFO, " Selector=%u", |
| 322 | | | u32Selector); |
Uninitialized Variable
u32Selector was not initialized. The issue can occur if the highlighted code executes. See related event 1. Show: All events | Only primary events |
|
| |