(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-dcerpc-mapi.c) |
| |
| 4287 | | | mapi_dissect_element_EcDoRpc_response_(tvbuff_t *tvb _U_, int offset _U_, packet_info *pinfo _U_, proto_tree *tree _U_, guint8 *drep _U_) |
| 4288 | | | { |
| 4289 | | | guint32 size; |
| 4290 | | | int start_offset = offset; |
| 4291 | | | guint8 *decrypted_data; |
| 4292 | | | tvbuff_t *decrypted_tvb; |
| 4293 | | | const guint8 *ptr; |
| 4294 | | | gint reported_len; |
| 4295 | | | guint16 pdu_len; |
| 4296 | | | guint32 i; |
| 4297 | | | proto_item *it = NULL; |
| 4298 | | | proto_tree *tr = NULL; |
| 4299 | [+] | | offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, drep, hf_mapi_EcDoRpc_mapi_response, &size); |
Event 1:
dissect_ndr_uint32() does not initialize size. - This may be because of a failure case or other special case for dissect_ndr_uint32().
hide
|
|
 |
| 4300 | | | proto_tree_add_text(tree, tvb, start_offset, offset - start_offset + size, "Subcontext size: 0x%x", 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 |
|
| |