Added patch to avoid calling RegCloseKey on uninitialized memory.

This commit is contained in:
Sebastian Lackner
2017-07-09 16:01:31 +02:00
parent 8b3a73a4df
commit 55b5c61703
2 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
From 0d627c069b85cfcf18429e349b6a4166bd646451 Mon Sep 17 00:00:00 2001
From: Sebastian Lackner <sebastian@fds-team.de>
Date: Sun, 9 Jul 2017 15:59:59 +0200
Subject: reg/tests: Don't call RegCloseKey on uninitialized memory.
---
programs/reg/tests/reg.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/programs/reg/tests/reg.c b/programs/reg/tests/reg.c
index af092908cbc..941d3257c95 100644
--- a/programs/reg/tests/reg.c
+++ b/programs/reg/tests/reg.c
@@ -793,7 +793,7 @@ static void test_import(void)
DWORD r, dword = 0x123, type, size;
char test1_reg[MAX_PATH], test2_reg[MAX_PATH], cmdline[MAX_PATH];
char test_string[] = "Test string", buffer[24];
- HKEY hkey, subkey;
+ HKEY hkey, subkey = NULL;
LONG err;
BYTE hex[8];
--
2.13.1