(/home/sate/Testcases/c/cve/wireshark-1.2.0/plugins/profinet/packet-dcom-cba.c) |
| |
| 1025 | | | dissect_Unadvise_rqst(tvbuff_t *tvb, int offset, |
| 1026 | | | packet_info *pinfo, proto_tree *tree, guint8 *drep) |
| 1027 | | | { |
| 1028 | | | guint32 u32Cookie; |
| 1029 | | | |
| 1030 | | | |
| 1031 | | | offset = dissect_dcom_this(tvb, offset, pinfo, tree, drep); |
| 1032 | | | |
| 1033 | | | offset = dissect_dcom_DWORD(tvb, offset, pinfo, tree, drep, |
| 1034 | [+] | | hf_cba_cookie, &u32Cookie); |
Event 1:
dissect_ndr_uint32() does not initialize u32Cookie. - This may be because of a failure case or other special case for dissect_ndr_uint32().
hide
|
|
 |
| 1035 | | | |
| 1036 | | | if (check_col(pinfo->cinfo, COL_INFO)) { |
Event 3:
Taking true branch. check_col(...) evaluates to true.
hide
|
|
| 1037 | | | col_append_fstr(pinfo->cinfo, COL_INFO, ": Cookie=0x%x", |
| 1038 | | | u32Cookie); |
Uninitialized Variable
u32Cookie was not initialized. The issue can occur if the highlighted code executes. See related event 1. Show: All events | Only primary events |
|
| |