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
513505d6
Commit
513505d6
authored
Feb 19, 2015
by
Jonathan Vollebregt
Committed by
Alexandre Julliard
Feb 23, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reg: Add a check for multiple backslashes at the end of the key.
parent
208ca071
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
reg.c
programs/reg/reg.c
+8
-0
reg.c
programs/reg/tests/reg.c
+2
-2
No files found.
programs/reg/reg.c
View file @
513505d6
...
...
@@ -181,6 +181,14 @@ static LPBYTE get_regdata(LPWSTR data, DWORD reg_type, WCHAR separator, DWORD *r
static
BOOL
sane_path
(
const
WCHAR
*
key
)
{
unsigned
int
i
=
strlenW
(
key
);
if
(
i
<
3
||
(
key
[
i
-
1
]
==
'\\'
&&
key
[
i
-
2
]
==
'\\'
))
{
reg_message
(
STRING_INVALID_KEY
);
return
FALSE
;
}
if
(
key
[
0
]
==
'\\'
&&
key
[
1
]
==
'\\'
&&
key
[
2
]
!=
'\\'
)
{
reg_message
(
STRING_NO_REMOTE
);
...
...
programs/reg/tests/reg.c
View file @
513505d6
...
...
@@ -129,10 +129,10 @@ static void test_add(void)
ok
(
err
==
ERROR_FILE_NOT_FOUND
,
"got exit code %d
\n
"
,
r
);
run_reg_exe
(
"reg add HKCU
\\
"
KEY_BASE
"
\\
keytest2
\\\\
/f"
,
&
r
);
todo_wine
ok
(
r
==
REG_EXIT_FAILURE
||
broken
(
r
==
REG_EXIT_SUCCESS
/* WinXP */
),
ok
(
r
==
REG_EXIT_FAILURE
||
broken
(
r
==
REG_EXIT_SUCCESS
/* WinXP */
),
"got exit code %u
\n
"
,
r
);
err
=
RegDeleteKeyA
(
HKEY_CURRENT_USER
,
KEY_BASE
"
\\
keytest2"
);
todo_wine
ok
(
err
==
ERROR_FILE_NOT_FOUND
||
broken
(
err
==
ERROR_SUCCESS
/* WinXP */
),
ok
(
err
==
ERROR_FILE_NOT_FOUND
||
broken
(
err
==
ERROR_SUCCESS
/* WinXP */
),
"got exit code %d
\n
"
,
r
);
run_reg_exe
(
"reg add HKCU
\\
"
KEY_BASE
"
\\
keytest3
\\
/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