(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-dcerpc-spoolss.c) |
| |
| 6275 | | | static int SpoolssRFNPCNEX_q(tvbuff_t *tvb, int offset, packet_info *pinfo, |
| 6276 | | | proto_tree *tree, guint8 *drep) |
| 6277 | | | { |
| 6278 | | | guint32 changeid; |
| 6279 | | | |
| 6280 | | | |
| 6281 | | | |
| 6282 | | | offset = dissect_nt_policy_hnd( |
| 6283 | | | tvb, offset, pinfo, tree, drep, hf_hnd, NULL, NULL, |
| 6284 | | | FALSE, FALSE); |
| 6285 | | | |
| 6286 | | | offset = dissect_ndr_uint32( |
| 6287 | [+] | | 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
|
|
 |
| 6288 | | | |
| 6289 | | | if (check_col(pinfo->cinfo, COL_INFO)) |
Event 3:
Taking true branch. check_col(...) evaluates to true.
hide
|
|
| 6290 | | | col_append_fstr( |
| 6291 | | | 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 |
|
| |