(/home/sate/Testcases/c/cve/wireshark-1.2.0/plugins/profinet/packet-dcom-cba-acco.c) |
| |
| 1133 | | | dissect_ICBAAccoServerSRT_Disconnect_resp(tvbuff_t *tvb, int offset, |
| 1134 | | | packet_info *pinfo, proto_tree *tree, guint8 *drep) |
| 1135 | | | { |
| 1136 | | | guint32 u32HResult; |
| 1137 | | | guint32 u32Pointer; |
| 1138 | | | guint32 u32ArraySize = 0; |
| 1139 | | | guint32 u32Idx; |
| 1140 | | | guint32 u32Tmp; |
| 1141 | | | proto_item *item; |
| 1142 | | | |
| 1143 | | | |
| 1144 | | | offset = dissect_dcom_that(tvb, offset, pinfo, tree, drep); |
| 1145 | | | |
| 1146 | | | item = proto_tree_add_boolean (tree, hf_cba_acco_srt_call, tvb, offset, 0, FALSE); |
| 1147 | | | PROTO_ITEM_SET_GENERATED(item);
x /home/sate/Testcases/c/cve/wireshark-1.2.0/epan/proto.h |
| |
325 | #define PROTO_ITEM_SET_GENERATED(proto_item) \ |
326 | ((proto_item) ? FI_SET_FLAG((proto_item)->finfo, FI_GENERATED) : 0) |
| |
x /home/sate/Testcases/c/cve/wireshark-1.2.0/epan/proto.h |
| |
246 | #define FI_SET_FLAG(fi, flag) (fi->flags = fi->flags | flag) |
| |
|
Event 1:
item evaluates to false.
hide
|
|
| 1148 | | | pinfo->profinet_type = 3; |
| 1149 | | | |
| 1150 | | | offset = dissect_dcom_dcerpc_pointer(tvb, offset, pinfo, tree, drep, |
| 1151 | [+] | | &u32Pointer); |
Event 2:
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
|
|
 |
| 1152 | | | |
| 1153 | | | if (u32Pointer) { |
Uninitialized Variable
u32Pointer was not initialized. The issue can occur if the highlighted code executes. See related events 2 and 4. Show: All events | Only primary events |
|
| |