Module: wine Branch: master Commit: 1a2aa7ca3d3249ce054353ca335ea42da834625d URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=1a2aa7ca3d3249ce054353ca...
Author: Paul Vriens Paul.Vriens@xs4all.nl Date: Mon Oct 2 16:07:39 2006 +0200
advapi32: Make sure it's a real cleanup.
---
dlls/advapi32/tests/registry.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/advapi32/tests/registry.c b/dlls/advapi32/tests/registry.c index 2341cad..c9a9e36 100644 --- a/dlls/advapi32/tests/registry.c +++ b/dlls/advapi32/tests/registry.c @@ -585,8 +585,8 @@ static void test_reg_create_key(void) ok(!ret, "RegCreateKeyExA failed with error %ld\n", ret);
/* clean up */ - RegDeleteKey(hkey2, NULL); - RegDeleteKey(hkey1, NULL); + RegDeleteKey(hkey2, ""); + RegDeleteKey(hkey1, "");
/* beginning backslash character */ ret = RegCreateKeyExA(hkey_main, "\Subkey3", 0, NULL, 0, KEY_NOTIFY, NULL, &hkey1, NULL);