commit | 1c40562bc11dab3e82b8e7dc0091bebad5865c1b | [log] [tgz] |
---|---|---|
author | Marcus Meissner <marcus@jet.franken.de> | Fri Sep 03 12:19:34 1999 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Fri Sep 03 12:19:34 1999 +0000 |
tree | 17a10cd51db099eb90f4b7dc891a5ef7aeb99ae9 | |
parent | d083baba24d680704f0f5c7bb1d2390ed6c5cc76 [diff] [blame] |
subkey_found did not search for _all_ sub keys.
diff --git a/misc/registry.c b/misc/registry.c index f163ae0..1417845 100644 --- a/misc/registry.c +++ b/misc/registry.c
@@ -433,11 +433,10 @@ */ static int subkey_found(LPKEYSTRUCT lpcurrkey, LPKEYSTRUCT lpkey_to_find) { - if (lpcurrkey == lpkey_to_find) - return 1; - while (lpcurrkey) { + if (lpcurrkey == lpkey_to_find) + return 1; if (subkey_found(lpcurrkey->nextsub, lpkey_to_find)) return 1;