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
2fd01011
Commit
2fd01011
authored
Feb 16, 2016
by
Hugh McMaster
Committed by
Alexandre Julliard
Feb 16, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reg: Fail if strtolW cannot convert the entire data string into a DWORD.
Signed-off-by:
Hugh McMaster
<
hugh.mcmaster@outlook.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
0f42948b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
reg.c
programs/reg/reg.c
+1
-1
reg.c
programs/reg/tests/reg.c
+3
-3
No files found.
programs/reg/reg.c
View file @
2fd01011
...
...
@@ -244,7 +244,7 @@ static LPBYTE get_regdata(LPWSTR data, DWORD reg_type, WCHAR separator, DWORD *r
LPWSTR
rest
;
DWORD
val
;
val
=
strtolW
(
data
,
&
rest
,
0
);
if
(
rest
==
data
)
{
if
(
*
rest
)
{
output_message
(
STRING_MISSING_INTEGER
);
break
;
}
...
...
programs/reg/tests/reg.c
View file @
2fd01011
...
...
@@ -258,7 +258,7 @@ static void test_add(void)
run_reg_exe
(
"reg add HKCU
\\
"
KEY_BASE
" /v dword3 /t REG_DWORD /d deadbeef /f"
,
&
r
);
ok
(
r
==
REG_EXIT_FAILURE
,
"got exit code %d, expected 1
\n
"
,
r
);
run_reg_exe
(
"reg add HKCU
\\
"
KEY_BASE
" /v dword4 /t REG_DWORD /d 123xyz /f"
,
&
r
);
todo_wine
ok
(
r
==
REG_EXIT_FAILURE
,
"got exit code %d, expected 1
\n
"
,
r
);
ok
(
r
==
REG_EXIT_FAILURE
,
"got exit code %d, expected 1
\n
"
,
r
);
run_reg_exe
(
"reg add HKCU
\\
"
KEY_BASE
" /v dword5 /t reg_dword /d 12345678 /f"
,
&
r
);
ok
(
r
==
REG_EXIT_SUCCESS
,
"got exit code %d, expected 0
\n
"
,
r
);
...
...
@@ -276,7 +276,7 @@ static void test_add(void)
"got wrong data %d, expected %d
\n
"
,
dword
,
123
);
run_reg_exe
(
"reg add HKCU
\\
"
KEY_BASE
" /v dword7 /t reg_dword /d 0xabcdefg /f"
,
&
r
);
todo_wine
ok
(
r
==
REG_EXIT_FAILURE
,
"got exit code %d, expected 1
\n
"
,
r
);
ok
(
r
==
REG_EXIT_FAILURE
,
"got exit code %d, expected 1
\n
"
,
r
);
run_reg_exe
(
"reg add HKCU
\\
"
KEY_BASE
" /v dword8 /t REG_dword /d 0xdeadbeef /f"
,
&
r
);
ok
(
r
==
REG_EXIT_SUCCESS
,
"got exit code %d, expected 0
\n
"
,
r
);
...
...
@@ -299,7 +299,7 @@ static void test_add(void)
(
sizeof
(
long
)
>
sizeof
(
DWORD
))
?
0
:
TODO_REG_DATA
);
run_reg_exe
(
"reg add HKCU
\\
"
KEY_BASE
" /v dword13 /t REG_DWORD /d 00x123 /f"
,
&
r
);
todo_wine
ok
(
r
==
REG_EXIT_FAILURE
,
"got exit code %d, expected 1
\n
"
,
r
);
ok
(
r
==
REG_EXIT_FAILURE
,
"got exit code %d, expected 1
\n
"
,
r
);
/* REG_DWORD_LITTLE_ENDIAN */
run_reg_exe
(
"reg add HKCU
\\
"
KEY_BASE
" /v DWORD_LE /t REG_DWORD_LITTLE_ENDIAN /d 456 /f"
,
&
r
);
...
...
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