(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-dcerpc-spoolss.c) |
| |
| 2170 | | | dissect_printer_attributes(tvbuff_t *tvb, int offset, packet_info *pinfo, |
| 2171 | | | proto_tree *tree, guint8 *drep) |
| 2172 | | | { |
| 2173 | | | proto_item *item; |
| 2174 | | | proto_tree *subtree; |
| 2175 | | | guint32 attributes; |
| 2176 | | | |
| 2177 | | | offset = dissect_ndr_uint32(tvb, offset, pinfo, NULL, drep, |
| 2178 | [+] | | hf_printer_attributes, &attributes); |
Event 1:
dissect_ndr_uint32() does not initialize attributes. - This may be because of a failure case or other special case for dissect_ndr_uint32().
hide
|
|
 |
| 2179 | | | |
| 2180 | | | item = proto_tree_add_text(tree, tvb, offset - 4, 4, |
| 2181 | | | "Attributes: 0x%08x", attributes); |
Uninitialized Variable
attributes was not initialized. The issue can occur if the highlighted code executes. See related event 1. Show: All events | Only primary events |
|
| |