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
f70e80b3
Commit
f70e80b3
authored
Mar 17, 2005
by
Ivan Leo Puoti
Committed by
Alexandre Julliard
Mar 17, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add parameter checking and remove last fixme.
parent
7676e9b8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
reg.c
dlls/ntdll/reg.c
+4
-4
No files found.
dlls/ntdll/reg.c
View file @
f70e80b3
...
...
@@ -779,10 +779,7 @@ static NTSTATUS RTL_ReportRegistryValue(PKEY_VALUE_FULL_INFORMATION pInfo,
if
(
pInfo
==
NULL
)
{
if
(
pQuery
->
Flags
&
RTL_QUERY_REGISTRY_DIRECT
)
{
FIXME
(
"(pInfo == NULL, pQuery->Flags & RTL_QUERY_REGISTRY_DIRECT), stub!
\n
"
);
return
status
;
}
return
STATUS_INVALID_PARAMETER
;
else
{
status
=
pQuery
->
QueryRoutine
(
pQuery
->
Name
,
pQuery
->
DefaultType
,
pQuery
->
DefaultData
,
...
...
@@ -1023,6 +1020,9 @@ NTSTATUS WINAPI RtlQueryRegistryValues(IN ULONG RelativeTo, IN PCWSTR Path,
TRACE
(
"(%ld, %s, %p, %p, %p)
\n
"
,
RelativeTo
,
debugstr_w
(
Path
),
QueryTable
,
Context
,
Environment
);
if
(
Path
==
NULL
)
return
STATUS_INVALID_PARAMETER
;
/* get a valid handle */
if
(
RelativeTo
&
RTL_REGISTRY_HANDLE
)
topkey
=
handle
=
(
HANDLE
)
Path
;
...
...
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