(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-dcerpc-mapi.c) |
| |
| 9116 | | | (tvbuff_t *tvb _U_, int offset _U_, packet_info *pinfo _U_, proto_tree *tree _U_, guint8 *drep _U_) |
| 9117 | | | { |
| 9118 | | | guint16 size; |
| 9119 | | | int start_offset = offset; |
| 9120 | | | tvbuff_t *subtvb; |
| 9121 | [+] | | offset = dissect_ndr_uint16(tvb, offset, pinfo, tree, drep, , &size); |
Event 1:
dissect_ndr_uint16() does not initialize size. - This may be because of a failure case or other special case for dissect_ndr_uint16().
hide
|
|
 |
| 9122 | | | proto_tree_add_text(tree, tvb, start_offset, offset - start_offset + size, "Subcontext size"); |
Uninitialized Variable
size was not initialized. The issue can occur if the highlighted code executes. See related event 1. Show: All events | Only primary events |
|
| |