(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-dcerpc-spoolss.c) |
| |
| 5756 | | | dissect_notify_info_data_buffer(tvbuff_t *tvb, int offset, packet_info *pinfo, |
| 5757 | | | proto_tree *tree, guint8 *drep) |
| 5758 | | | { |
| 5759 | | | guint32 len; |
| 5760 | | | |
| 5761 | | | offset = dissect_ndr_uint32( |
| 5762 | | | tvb, offset, pinfo, tree, drep, |
| 5763 | [+] | | hf_notify_info_data_buffer_len, &len); |
Event 1:
dissect_ndr_uint32() does not initialize len. - This may be because of a failure case or other special case for dissect_ndr_uint32().
hide
|
|
 |
| 5764 | | | |
| 5765 | | | offset = dissect_ndr_uint16s( |
| 5766 | | | tvb, offset, pinfo, tree, drep, |
| 5767 | | | hf_notify_info_data_buffer_data, len); |
Uninitialized Variable
len was not initialized. The issue can occur if the highlighted code executes. See related event 1. Show: All events | Only primary events |
|
| |