Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
1c40562b
Commit
1c40562b
authored
Sep 03, 1999
by
Marcus Meissner
Committed by
Alexandre Julliard
Sep 03, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
subkey_found did not search for _all_ sub keys.
parent
d083baba
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
registry.c
misc/registry.c
+2
-3
No files found.
misc/registry.c
View file @
1c40562b
...
...
@@ -433,11 +433,10 @@ static LPKEYSTRUCT lookup_hkey( HKEY hkey )
*/
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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment