(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-dcerpc-spoolss.c) |
| |
| 6170 | | | dissect_NOTIFY_INFO_DATA(tvbuff_t *tvb, int offset, packet_info *pinfo, |
| 6171 | | | proto_tree *tree, guint8 *drep) |
| 6172 | | | { |
| 6173 | | | proto_item *item; |
| 6174 | | | proto_tree *subtree; |
| 6175 | | | guint32 count; |
| 6176 | | | guint16 type, field; |
| 6177 | | | const char *field_string; |
| 6178 | | | |
| 6179 | | | item = proto_tree_add_text(tree, tvb, offset, 0, "%s", ""); |
| 6180 | | | |
| 6181 | | | subtree = proto_item_add_subtree(item, ett_NOTIFY_INFO_DATA); |
| 6182 | | | |
| 6183 | | | offset = dissect_ndr_uint16( |
| 6184 | | | tvb, offset, pinfo, subtree, drep, |
| 6185 | [+] | | hf_notify_info_data_type, &type); |
Event 1:
dissect_ndr_uint16() does not initialize type. - This may be because of a failure case or other special case for dissect_ndr_uint16().
hide
|
|
 |
| 6186 | | | |
| 6187 | | | offset = dissect_notify_field( |
| 6188 | | | tvb, offset, pinfo, subtree, drep, type, &field); |
Uninitialized Variable
type was not initialized. The issue can occur if the highlighted code executes. See related event 1. Show: All events | Only primary events |
|
| |