(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-dcerpc-nt.c) |
| |
| 767 | | | dissect_ntstatus(tvbuff_t *tvb, gint offset, packet_info *pinfo, |
| 768 | | | proto_tree *tree, guint8 *drep, |
| 769 | | | int hfindex, guint32 *pdata) |
| 770 | | | { |
| 771 | | | guint32 status; |
| 772 | | | |
| 773 | | | offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, drep, |
| 774 | [+] | | hfindex, &status); |
Event 1:
dissect_ndr_uint32() does not initialize status. - This may be because of a failure case or other special case for dissect_ndr_uint32().
hide
|
|
 |
| 775 | | | |
| 776 | | | if (status != 0 && check_col(pinfo->cinfo, COL_INFO)) |
Uninitialized Variable
status was not initialized. The issue can occur if the highlighted code executes. See related event 1. Show: All events | Only primary events |
|
| |