(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-dcerpc-nt.c) |
| |
| 789 | | | dissect_doserror(tvbuff_t *tvb, gint offset, packet_info *pinfo, |
| 790 | | | proto_tree *tree, guint8 *drep, |
| 791 | | | int hfindex, guint32 *pdata) |
| 792 | | | { |
| 793 | | | guint32 status; |
| 794 | | | |
| 795 | | | offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, drep, |
| 796 | [+] | | 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
|
|
 |
| 797 | | | |
| 798 | | | 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 |
|
| |