(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-dcerpc-conv.c) |
| |
| 86 | | | conv_dissect_who_are_you_resp (tvbuff_t *tvb, int offset, |
| 87 | | | packet_info *pinfo, proto_tree *tree, |
| 88 | | | guint8 *drep) |
| 89 | | | { |
| 90 | | | |
| 91 | | | |
| 92 | | | |
| 93 | | | |
| 94 | | | guint32 seq, st; |
| 95 | | | |
| 96 | | | offset = dissect_ndr_uint32 (tvb, offset, pinfo, tree, drep, hf_conv_who_are_you_resp_seq, &seq); |
| 97 | [+] | | offset = dissect_ndr_uint32 (tvb, offset, pinfo, tree, drep, hf_conv_rc, &st); |
Event 1:
dissect_ndr_uint32() does not initialize st. - This may be because of a failure case or other special case for dissect_ndr_uint32().
hide
|
|
 |
| 98 | | | |
| 99 | | | |
| 100 | [+] | | if (check_col(pinfo->cinfo, COL_INFO)) { |
 |
| 101 | | | col_add_fstr(pinfo->cinfo, COL_INFO, "conv_who_are_you response seq:%u st:%s", |
| 102 | | | seq, val_to_str(st, dce_error_vals, "%u")); |
Uninitialized Variable
st was not initialized. The issue can occur if the highlighted code executes. See related event 1. Show: All events | Only primary events |
|
| |