(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-dcerpc-nt.c) |
| |
| 1427 | | | dissect_ndr_nt_acct_ctrl(tvbuff_t *tvb, int offset, packet_info *pinfo, |
| 1428 | | | proto_tree *parent_tree, guint8 *drep) |
| 1429 | | | { |
| 1430 | | | guint32 mask; |
| 1431 | | | proto_item *item = NULL; |
| 1432 | | | proto_tree *tree = NULL; |
| 1433 | | | |
| 1434 | | | offset=dissect_ndr_uint32(tvb, offset, pinfo, NULL, drep, |
| 1435 | [+] | | hf_nt_acct_ctrl, &mask); |
Event 1:
dissect_ndr_uint32() does not initialize mask. - This may be because of a failure case or other special case for dissect_ndr_uint32().
hide
|
|
 |
| 1436 | | | |
| 1437 | | | if(parent_tree){ |
Event 3:
Taking true branch. parent_tree evaluates to true.
hide
|
|
| 1438 | | | item = proto_tree_add_uint(parent_tree, hf_nt_acct_ctrl, |
| 1439 | | | tvb, offset-4, 4, mask); |
Uninitialized Variable
mask was not initialized. The issue can occur if the highlighted code executes. See related event 1. Show: All events | Only primary events |
|
| |