(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-dcerpc-spoolss.c) |
| |
| 2839 | | | dissect_notify_options_flags(tvbuff_t *tvb, int offset, packet_info *pinfo, |
| 2840 | | | proto_tree *tree, guint8 *drep) |
| 2841 | | | { |
| 2842 | | | proto_item *item; |
| 2843 | | | proto_tree *subtree; |
| 2844 | | | guint32 flags; |
| 2845 | | | |
| 2846 | | | offset = dissect_ndr_uint32(tvb, offset, pinfo, NULL, drep, |
| 2847 | | | hf_notify_options_flags, |
| 2848 | [+] | | &flags); |
Event 1:
dissect_ndr_uint32() does not initialize flags. - This may be because of a failure case or other special case for dissect_ndr_uint32().
hide
|
|
 |
| 2849 | | | |
| 2850 | | | item = proto_tree_add_text(tree, tvb, offset - 4, 4, |
| 2851 | | | "Flags: 0x%08x", flags); |
Uninitialized Variable
flags was not initialized. The issue can occur if the highlighted code executes. See related event 1. Show: All events | Only primary events |
|
| |