(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-dcom.c) |
| |
| 677 | | | dissect_dcom_extent(tvbuff_t *tvb, int offset, |
| 678 | | | packet_info *pinfo, proto_tree *tree, guint8 *drep) |
| 679 | | | { |
| 680 | | | guint32 u32ArraySize; |
| 681 | | | guint32 u32ArraySize2; |
| 682 | | | guint32 u32Pointer; |
| 683 | | | guint32 u32VariableOffset; |
| 684 | | | guint32 u32Idx; |
| 685 | | | guint32 u32SubStart; |
| 686 | | | proto_item *sub_item; |
| 687 | | | proto_tree *sub_tree; |
| 688 | | | |
| 689 | | | guint32 u32ArrayCount; |
| 690 | | | guint32 u32ArrayRes; |
| 691 | | | |
| 692 | | | guint32 u32ExtentSize; |
| 693 | | | e_uuid_t uuidExtend; |
| 694 | | | const char *uuid_name; |
| 695 | | | |
| 696 | | | |
| 697 | [+] | | offset = dissect_dcom_dcerpc_pointer(tvb, offset, pinfo, tree, drep, &u32Pointer); |
Event 1:
dissect_dcom_dcerpc_pointer() does not initialize u32Pointer. - This may be because of a failure case or other special case for dissect_dcom_dcerpc_pointer().
hide
|
|
 |
| 698 | | | |
| 699 | | | if (u32Pointer == 0) { |
Uninitialized Variable
u32Pointer was not initialized. The issue can occur if the highlighted code executes. See related events 1 and 3. Show: All events | Only primary events |
|
| |