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
cf6477ab
Commit
cf6477ab
authored
Jun 30, 2015
by
Bernhard Übelacker
Committed by
Alexandre Julliard
Jul 08, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
regedit: Call RegEnumValueW with value and val_count parameters.
parent
119501fe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
9 deletions
+23
-9
treeview.c
programs/regedit/treeview.c
+23
-9
No files found.
programs/regedit/treeview.c
View file @
cf6477ab
...
...
@@ -226,9 +226,10 @@ static BOOL match_item(HWND hwndTV, HTREEITEM hItem, LPCWSTR sstring, int mode,
if
(
mode
&
(
SEARCH_VALUES
|
SEARCH_CONTENT
))
{
int
i
,
adjust
;
WCHAR
valName
[
KEY_MAX_LEN
]
,
*
KeyPath
;
WCHAR
*
valName
,
*
KeyPath
;
HKEY
hKey
,
hRoot
;
DWORD
lenName
;
DWORD
lenName
,
lenNameMax
,
lenValueMax
;
WCHAR
*
buffer
=
NULL
;
KeyPath
=
GetItemPath
(
hwndTV
,
hItem
,
&
hRoot
);
...
...
@@ -241,7 +242,14 @@ static BOOL match_item(HWND hwndTV, HTREEITEM hItem, LPCWSTR sstring, int mode,
}
HeapFree
(
GetProcessHeap
(),
0
,
KeyPath
);
lenName
=
KEY_MAX_LEN
;
if
(
ERROR_SUCCESS
!=
RegQueryInfoKeyW
(
hKey
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
&
lenNameMax
,
&
lenValueMax
,
NULL
,
NULL
))
return
FALSE
;
lenName
=
++
lenNameMax
;
if
(
!
(
valName
=
HeapAlloc
(
GetProcessHeap
(),
0
,
lenName
*
sizeof
(
valName
[
0
])
)))
return
FALSE
;
adjust
=
0
;
/* RegEnumValue won't return empty default value, so fake it when dealing with *row,
which corresponds to list view rows, not value ids */
...
...
@@ -252,14 +260,16 @@ static BOOL match_item(HWND hwndTV, HTREEITEM hItem, LPCWSTR sstring, int mode,
if
(
i
<
0
)
i
=
0
;
while
(
1
)
{
DWORD
lenValue
=
0
,
type
=
0
;
lenName
=
KEY_MAX_LEN
;
lenName
=
lenNameMax
;
if
(
ERROR_SUCCESS
!=
RegEnumValueW
(
hKey
,
i
,
valName
,
&
lenName
,
NULL
,
&
type
,
NULL
,
&
lenValue
))
i
,
valName
,
&
lenName
,
NULL
,
&
type
,
NULL
,
NULL
))
break
;
if
(
mode
&
SEARCH_VALUES
)
{
if
(
match_string
(
valName
,
sstring
,
mode
))
{
HeapFree
(
GetProcessHeap
(),
0
,
valName
);
HeapFree
(
GetProcessHeap
(),
0
,
buffer
);
RegCloseKey
(
hKey
);
*
row
=
i
+
adjust
;
return
TRUE
;
...
...
@@ -267,23 +277,27 @@ static BOOL match_item(HWND hwndTV, HTREEITEM hItem, LPCWSTR sstring, int mode,
}
if
((
mode
&
SEARCH_CONTENT
)
&&
(
type
==
REG_EXPAND_SZ
||
type
==
REG_SZ
))
{
LPWSTR
buffer
;
buffer
=
HeapAlloc
(
GetProcessHeap
(),
0
,
lenValue
);
if
(
!
buffer
)
buffer
=
HeapAlloc
(
GetProcessHeap
(),
0
,
lenValueMax
);
if
(
!
buffer
)
break
;
if
(
ERROR_SUCCESS
!=
RegEnumValueW
(
hKey
,
i
,
NULL
,
NULL
,
NULL
,
&
type
,
(
LPBYTE
)
buffer
,
&
lenValue
))
lenName
=
lenNameMax
;
lenValue
=
lenValueMax
;
if
(
ERROR_SUCCESS
!=
RegEnumValueW
(
hKey
,
i
,
valName
,
&
lenName
,
NULL
,
&
type
,
(
LPBYTE
)
buffer
,
&
lenValue
))
break
;
if
(
match_string
(
buffer
,
sstring
,
mode
))
{
HeapFree
(
GetProcessHeap
(),
0
,
valName
);
HeapFree
(
GetProcessHeap
(),
0
,
buffer
);
RegCloseKey
(
hKey
);
*
row
=
i
+
adjust
;
return
TRUE
;
}
HeapFree
(
GetProcessHeap
(),
0
,
buffer
);
}
i
++
;
}
HeapFree
(
GetProcessHeap
(),
0
,
valName
);
HeapFree
(
GetProcessHeap
(),
0
,
buffer
);
RegCloseKey
(
hKey
);
}
return
FALSE
;
...
...
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