(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-dcom-dispatch.c) |
| |
| 268 | | | dissect_IDispatch_Invoke_rqst(tvbuff_t *tvb, int offset, |
| 269 | | | packet_info *pinfo, proto_tree *tree, guint8 *drep) |
| 270 | | | { |
| 271 | | | guint32 u32DispIdMember; |
| 272 | | | e_uuid_t riid; |
| 273 | | | guint32 u32Lcid; |
| 274 | | | guint32 u32Flags; |
| 275 | | | guint32 u32Args; |
| 276 | | | guint32 u32NamedArgs; |
| 277 | | | guint32 u32Pointer; |
| 278 | | | guint32 u32Pointer2; |
| 279 | | | guint32 u32ArraySize; |
| 280 | | | guint32 u32VariableOffset; |
| 281 | | | guint32 u32VarRef; |
| 282 | | | guint32 u32VarRefIdx; |
| 283 | | | guint32 u32TmpOffset; |
| 284 | | | guint32 u32SubStart; |
| 285 | | | |
| 286 | | | proto_item *feature_item; |
| 287 | | | proto_tree *feature_tree; |
| 288 | | | proto_item *dispparams_item; |
| 289 | | | proto_tree *dispparams_tree; |
| 290 | | | |
| 291 | | | |
| 292 | | | offset = dissect_dcom_this(tvb, offset, pinfo, tree, drep); |
| 293 | | | |
| 294 | | | offset = dissect_dcom_DWORD(tvb, offset, pinfo, tree, drep, |
| 295 | [+] | | hf_dispatch_id, &u32DispIdMember); |
Event 1:
dissect_ndr_uint32() does not initialize u32DispIdMember. - This may be because of a failure case or other special case for dissect_ndr_uint32().
hide
|
|
 |
| 296 | | | if (check_col(pinfo->cinfo, COL_INFO)) { |
Event 3:
Taking true branch. check_col(...) evaluates to true.
hide
|
|
| 297 | | | col_append_fstr(pinfo->cinfo, COL_INFO, " ID=0x%x", u32DispIdMember); |
Uninitialized Variable
u32DispIdMember was not initialized. The issue can occur if the highlighted code executes. See related event 1. Show: All events | Only primary events |
|
| |