(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-dcerpc-netlogon.c) |
| |
| 4264 | | | netlogon_dissect_netrlogoncontrol2_reply(tvbuff_t *tvb, int offset, |
| 4265 | | | packet_info *pinfo, proto_tree *tree, guint8 *drep) |
| 4266 | | | { |
| 4267 | | | guint32 status; |
| 4268 | | | |
| 4269 | | | offset = dissect_ndr_pointer(tvb, offset, pinfo, tree, drep, |
| 4270 | | | netlogon_dissect_CONTROL_QUERY_INFORMATION, NDR_POINTER_REF, |
| 4271 | | | "CONTROL_QUERY_INFORMATION:", -1); |
| 4272 | | | |
| 4273 | [+] | | offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, drep, hf_netlogon_werr_rc, &status); |
Event 1:
dissect_ndr_uint32() does not initialize status. - This may be because of a failure case or other special case for dissect_ndr_uint32().
hide
|
|
 |
| 4274 | | | |
| 4275 | | | if (status != 0 && check_col(pinfo->cinfo, COL_INFO)) |
Uninitialized Variable
status was not initialized. The issue can occur if the highlighted code executes. See related event 1. Show: All events | Only primary events |
|
| |