mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 21:45:41 +00:00
[NTOS:CM]
* Fix uninitialized pointer read. CID 1223184. CORE-7975 svn path=/trunk/; revision=63654
This commit is contained in:
parent
7b04835c8b
commit
8a6f50e496
1 changed files with 2 additions and 1 deletions
|
@ -2173,7 +2173,8 @@ CmpDeepCopyKeyInternal(IN PHHIVE SourceHive,
|
||||||
OUT PHCELL_INDEX DestKeyCell OPTIONAL)
|
OUT PHCELL_INDEX DestKeyCell OPTIONAL)
|
||||||
{
|
{
|
||||||
NTSTATUS Status;
|
NTSTATUS Status;
|
||||||
PCM_KEY_NODE SrcNode, DestNode;
|
PCM_KEY_NODE SrcNode;
|
||||||
|
PCM_KEY_NODE DestNode = NULL;
|
||||||
HCELL_INDEX NewKeyCell, SubKey, NewSubKey;
|
HCELL_INDEX NewKeyCell, SubKey, NewSubKey;
|
||||||
ULONG Index, SubKeyCount;
|
ULONG Index, SubKeyCount;
|
||||||
PAGED_CODE();
|
PAGED_CODE();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue