(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-dcerpc-spoolss.c) |
| |
| 4130 | | | static int dissect_FORM_CTR(tvbuff_t *tvb, int offset, |
| 4131 | | | packet_info *pinfo, proto_tree *tree, |
| 4132 | | | guint8 *drep) |
| 4133 | | | { |
| 4134 | | | proto_item *item; |
| 4135 | | | proto_tree *subtree; |
| 4136 | | | guint32 level; |
| 4137 | | | |
| 4138 | | | item = proto_tree_add_text(tree, tvb, offset, 0, "Form container"); |
| 4139 | | | |
| 4140 | | | subtree = proto_item_add_subtree(item, ett_FORM_CTR); |
| 4141 | | | |
| 4142 | | | offset = dissect_ndr_uint32( |
| 4143 | [+] | | tvb, offset, pinfo, subtree, drep, hf_form_level, &level); |
Event 1:
dissect_ndr_uint32() does not initialize level. - This may be because of a failure case or other special case for dissect_ndr_uint32().
hide
|
|
 |
| 4144 | | | |
| 4145 | | | switch(level) { |
Uninitialized Variable
level was not initialized. The issue can occur if the highlighted code executes. See related event 1. Show: All events | Only primary events |
|
| |