(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-dcerpc-winreg.c) |
| |
| 1761 | | | winreg_dissect_EnumKey_response(tvbuff_t *tvb _U_, int offset _U_, packet_info *pinfo _U_, proto_tree *tree _U_, guint8 *drep _U_) |
| 1762 | | | { |
| 1763 | | | guint32 status; |
| 1764 | | | |
| 1765 | | | pinfo->dcerpc_procedure_name="EnumKey"; |
| 1766 | | | offset = winreg_dissect_element_EnumKey_name(tvb, offset, pinfo, tree, drep); |
| 1767 | | | offset = dissect_deferred_pointers(pinfo, tvb, offset, drep); |
| 1768 | | | |
| 1769 | | | offset = winreg_dissect_element_EnumKey_keyclass(tvb, offset, pinfo, tree, drep); |
| 1770 | | | offset = dissect_deferred_pointers(pinfo, tvb, offset, drep); |
| 1771 | | | |
| 1772 | | | offset = winreg_dissect_element_EnumKey_last_changed_time(tvb, offset, pinfo, tree, drep); |
| 1773 | | | offset = dissect_deferred_pointers(pinfo, tvb, offset, drep); |
| 1774 | | | |
| 1775 | [+] | | offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, drep, hf_winreg_werror, &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
|
|
 |
| 1776 | | | |
| 1777 | | | 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 |
|
| |