(/home/sate/Testcases/c/cve/wireshark-1.2.0/plugins/profinet/packet-dcom-cba-acco.c) |
| |
| 2753 | | | dissect_Server_GetProvIDs_resp(tvbuff_t *tvb, int offset, |
| 2754 | | | packet_info *pinfo, proto_tree *tree, guint8 *drep) |
| 2755 | | | { |
| 2756 | | | guint32 u32Count; |
| 2757 | | | guint32 u32Pointer; |
| 2758 | | | guint32 u32ArraySize; |
| 2759 | | | guint32 u32Idx; |
| 2760 | | | guint32 u32ProvID; |
| 2761 | | | guint32 u32HResult; |
| 2762 | | | |
| 2763 | | | |
| 2764 | | | offset = dissect_dcom_that(tvb, offset, pinfo, tree, drep); |
| 2765 | | | |
| 2766 | | | offset = dissect_dcom_DWORD(tvb, offset, pinfo, tree, drep, |
| 2767 | [+] | | hf_cba_acco_count, &u32Count); |
Event 1:
dissect_ndr_uint32() does not initialize u32Count. - This may be because of a failure case or other special case for dissect_ndr_uint32().
hide
|
|
 |
| 2768 | | | |
| 2769 | | | if (check_col(pinfo->cinfo, COL_INFO)) { |
Event 3:
Taking true branch. check_col(...) evaluates to true.
hide
|
|
| 2770 | | | if (u32Count) { |
Uninitialized Variable
u32Count was not initialized. The issue can occur if the highlighted code executes. See related event 1. Show: All events | Only primary events |
|
| |