(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-dcerpc-spoolss.c) |
| |
| 6321 | | | static int SpoolssRRPCN_q(tvbuff_t *tvb, int offset, packet_info *pinfo, |
| 6322 | | | proto_tree *tree, guint8 *drep) |
| 6323 | | | { |
| 6324 | | | guint32 changeid; |
| 6325 | | | |
| 6326 | | | |
| 6327 | | | |
| 6328 | | | offset = dissect_nt_policy_hnd( |
| 6329 | | | tvb, offset, pinfo, tree, drep, hf_hnd, NULL, NULL, |
| 6330 | | | FALSE, FALSE); |
| 6331 | | | |
| 6332 | | | offset = dissect_ndr_uint32( |
| 6333 | [+] | | tvb, offset, pinfo, tree, drep, hf_rrpcn_changelow, &changeid); |
Event 1:
dissect_ndr_uint32() does not initialize changeid. - This may be because of a failure case or other special case for dissect_ndr_uint32().
hide
|
|
 |
| 6334 | | | |
| 6335 | | | if (check_col(pinfo->cinfo, COL_INFO)) |
Event 3:
Taking true branch. check_col(...) evaluates to true.
hide
|
|
| 6336 | | | col_append_fstr( |
| 6337 | | | pinfo->cinfo, COL_INFO, ", changeid %d", changeid); |
Uninitialized Variable
changeid was not initialized. The issue can occur if the highlighted code executes. See related event 1. Show: All events | Only primary events |
|
| |