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
474361ec
Commit
474361ec
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 the data argument for REG_DWORD begins with a minus sign.
Signed-off-by:
Hugh McMaster
<
hugh.mcmaster@outlook.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
948888b9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
reg.c
programs/reg/reg.c
+1
-1
reg.c
programs/reg/tests/reg.c
+2
-2
No files found.
programs/reg/reg.c
View file @
474361ec
...
@@ -244,7 +244,7 @@ static LPBYTE get_regdata(LPWSTR data, DWORD reg_type, WCHAR separator, DWORD *r
...
@@ -244,7 +244,7 @@ static LPBYTE get_regdata(LPWSTR data, DWORD reg_type, WCHAR separator, DWORD *r
LPWSTR
rest
;
LPWSTR
rest
;
DWORD
val
;
DWORD
val
;
val
=
strtoulW
(
data
,
&
rest
,
0
);
val
=
strtoulW
(
data
,
&
rest
,
0
);
if
(
*
rest
)
{
if
(
*
rest
||
data
[
0
]
==
'-'
)
{
output_message
(
STRING_MISSING_INTEGER
);
output_message
(
STRING_MISSING_INTEGER
);
break
;
break
;
}
}
...
...
programs/reg/tests/reg.c
View file @
474361ec
...
@@ -284,9 +284,9 @@ static void test_add(void)
...
@@ -284,9 +284,9 @@ static void test_add(void)
verify_reg
(
hkey
,
"dword8"
,
REG_DWORD
,
&
dword
,
sizeof
(
dword
),
0
);
verify_reg
(
hkey
,
"dword8"
,
REG_DWORD
,
&
dword
,
sizeof
(
dword
),
0
);
run_reg_exe
(
"reg add HKCU
\\
"
KEY_BASE
" /t REG_DWORD /v dword9 /f /d -1"
,
&
r
);
run_reg_exe
(
"reg add HKCU
\\
"
KEY_BASE
" /t REG_DWORD /v dword9 /f /d -1"
,
&
r
);
todo_wine
ok
(
r
==
REG_EXIT_FAILURE
||
broken
(
r
==
REG_EXIT_SUCCESS
/* WinXP */
),
"got exit code %u
\n
"
,
r
);
ok
(
r
==
REG_EXIT_FAILURE
||
broken
(
r
==
REG_EXIT_SUCCESS
/* WinXP */
),
"got exit code %u
\n
"
,
r
);
run_reg_exe
(
"reg add HKCU
\\
"
KEY_BASE
" /t REG_DWORD /v dword10 /f /d -0x1"
,
&
r
);
run_reg_exe
(
"reg add HKCU
\\
"
KEY_BASE
" /t REG_DWORD /v dword10 /f /d -0x1"
,
&
r
);
todo_wine
ok
(
r
==
REG_EXIT_FAILURE
||
broken
(
r
==
REG_EXIT_SUCCESS
/* WinXP */
),
"got exit code %u
\n
"
,
r
);
ok
(
r
==
REG_EXIT_FAILURE
||
broken
(
r
==
REG_EXIT_SUCCESS
/* WinXP */
),
"got exit code %u
\n
"
,
r
);
run_reg_exe
(
"reg add HKCU
\\
"
KEY_BASE
" /v dword8 /t REG_dword /d 0x01ffffffff /f"
,
&
r
);
run_reg_exe
(
"reg add HKCU
\\
"
KEY_BASE
" /v dword8 /t REG_dword /d 0x01ffffffff /f"
,
&
r
);
todo_wine
ok
(
r
==
REG_EXIT_FAILURE
||
broken
(
r
==
REG_EXIT_SUCCESS
/* WinXP */
),
"got exit code %d
\n
"
,
r
);
todo_wine
ok
(
r
==
REG_EXIT_FAILURE
||
broken
(
r
==
REG_EXIT_SUCCESS
/* WinXP */
),
"got exit code %d
\n
"
,
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