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
d10fe185
Commit
d10fe185
authored
Aug 24, 2021
by
Francois Gouget
Committed by
Alexandre Julliard
Aug 24, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernelbase: Fix an ASCII / ANSI mixup in a comment.
Signed-off-by:
Francois Gouget
<
fgouget@free.fr
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2ee13997
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
registry.c
dlls/kernelbase/registry.c
+2
-2
No files found.
dlls/kernelbase/registry.c
View file @
d10fe185
...
...
@@ -1651,7 +1651,7 @@ LSTATUS WINAPI DECLSPEC_HOTPATCH RegQueryValueExA( HKEY hkey, LPCSTR name, LPDWO
if
(
status
&&
status
!=
STATUS_BUFFER_OVERFLOW
)
goto
done
;
/* we need to fetch the contents for a string type even if not requested,
* because we need to compute the length of the A
SCI
I string. */
* because we need to compute the length of the A
NS
I string. */
if
(
data
||
is_string
(
info
->
Type
))
{
/* retry with a dynamically allocated buffer */
...
...
@@ -2106,7 +2106,7 @@ LSTATUS WINAPI RegEnumValueA( HKEY hkey, DWORD index, LPSTR value, LPDWORD val_c
buffer
,
total_size
,
&
total_size
);
/* we need to fetch the contents for a string type even if not requested,
* because we need to compute the length of the A
SCI
I string. */
* because we need to compute the length of the A
NS
I string. */
/* retry with a dynamically allocated buffer */
while
(
status
==
STATUS_BUFFER_OVERFLOW
)
...
...
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