(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-dcerpc-conv.c) |
| |
| 62 | | | conv_dissect_who_are_you_rqst (tvbuff_t *tvb, int offset, |
| 63 | | | packet_info *pinfo, proto_tree *tree, |
| 64 | | | guint8 *drep) |
| 65 | | | { |
| 66 | | | |
| 67 | | | |
| 68 | | | |
| 69 | | | |
| 70 | | | e_uuid_t actuid; |
| 71 | | | |
| 72 | [+] | | offset = dissect_ndr_uuid_t (tvb, offset, pinfo, tree, drep, hf_conv_who_are_you_rqst_actuid, &actuid); |
Event 1:
dissect_ndr_uuid_t() does not initialize actuid. - This may be because of a failure case or other special case for dissect_ndr_uuid_t().
hide
|
|
 |
| 73 | | | offset = dissect_ndr_time_t (tvb, offset, pinfo, tree, drep, hf_conv_who_are_you_rqst_boot_time, NULL); |
| 74 | | | |
| 75 | | | if (check_col(pinfo->cinfo, COL_INFO)) { |
Event 3:
Taking true branch. check_col(...) evaluates to true.
hide
|
|
| 76 | | | col_add_fstr(pinfo->cinfo, COL_INFO, |
| 77 | | | "conv_who_are_you request actuid: %08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x", |
| 78 | | | actuid.Data1, actuid.Data2, actuid.Data3, actuid.Data4[0], actuid.Data4[1], |
| 79 | | | actuid.Data4[2], actuid.Data4[3], actuid.Data4[4], actuid.Data4[5], actuid.Data4[6], actuid.Data4[7]); |
Uninitialized Variable
actuid was not initialized. The issue can occur if the highlighted code executes. See related event 1. Show: All events | Only primary events |
|
| |