Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
41fd3800
Commit
41fd3800
authored
Jun 14, 2007
by
Misha Koshelev
Committed by
Alexandre Julliard
Jun 15, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Handle unquoted paths in InstallHinfSection as native.
parent
095c9bf2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
install.c
dlls/setupapi/install.c
+1
-1
install.c
dlls/setupapi/tests/install.c
+1
-1
No files found.
dlls/setupapi/install.c
View file @
41fd3800
...
...
@@ -1024,7 +1024,7 @@ void WINAPI InstallHinfSectionW( HWND hwnd, HINSTANCE handle, LPCWSTR cmdline, I
path
=
d
=
s
;
while
(
*
s
)
{
if
(
*
s
==
0
||
((
*
s
==
'\t'
||
*
s
==
' '
)
&&
!
in_quotes
)
)
{
if
(
*
s
==
0
)
{
/* end of this command line argument */
break
;
}
else
if
(
*
s
==
'\\'
)
{
...
...
dlls/setupapi/tests/install.c
View file @
41fd3800
...
...
@@ -121,7 +121,7 @@ static void test_cmdline(void)
create_inf_file
(
infwithspaces
,
cmdline_inf
);
sprintf
(
path
,
"%s
\\
%s"
,
CURR_DIR
,
infwithspaces
);
todo_wine
ok_cmdline
(
"DefaultInstall"
,
128
,
path
,
TRUE
);
ok_cmdline
(
"DefaultInstall"
,
128
,
path
,
TRUE
);
sprintf
(
path
,
"
\"
%s
\\
%s
\"
"
,
CURR_DIR
,
infwithspaces
);
todo_wine
ok_cmdline
(
"DefaultInstall"
,
128
,
path
,
FALSE
);
...
...
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