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
6ae919de
Commit
6ae919de
authored
Aug 11, 2019
by
Damjan Jovanovic
Committed by
Alexandre Julliard
Aug 19, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
start.exe: Unquote the title.
Signed-off-by:
Damjan Jovanovic
<
damjan.jov@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e1049b67
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
1 deletion
+29
-1
start.c
programs/start/start.c
+29
-1
No files found.
programs/start/start.c
View file @
6ae919de
...
...
@@ -172,6 +172,25 @@ static BOOL is_option(const WCHAR* arg, const WCHAR* opt)
arg
,
-
1
,
opt
,
-
1
)
==
CSTR_EQUAL
;
}
static
void
parse_title
(
const
WCHAR
*
arg
,
WCHAR
*
title
,
int
size
)
{
/* See:
* WCMD_start() in programs/cmd/builtins.c
* WCMD_parameter_with_delims() in programs/cmd/batch.c
* The shell has already tokenized the command line for us.
* All we need to do is filter out all the quotes.
*/
int
next
;
const
WCHAR
*
p
=
arg
;
for
(
next
=
0
;
next
<
(
size
-
1
)
&&
*
p
;
p
++
)
{
if
(
*
p
!=
'"'
)
title
[
next
++
]
=
*
p
;
}
title
[
next
]
=
'\0'
;
}
int
wmain
(
int
argc
,
WCHAR
*
argv
[])
{
SHELLEXECUTEINFOW
sei
;
...
...
@@ -223,7 +242,15 @@ int wmain (int argc, WCHAR *argv[])
for
(
i
=
1
;
i
<
argc
;
i
++
)
{
/* parse first quoted argument as console title */
if
(
!
title
&&
argv
[
i
][
0
]
==
'"'
)
{
title
=
argv
[
i
];
/* it will remove at least 1 quote */
int
maxChars
=
lstrlenW
(
argv
[
1
]);
title
=
HeapAlloc
(
GetProcessHeap
(),
0
,
maxChars
*
sizeof
(
WCHAR
));
if
(
title
)
parse_title
(
argv
[
i
],
title
,
maxChars
);
else
{
WINE_ERR
(
"out of memory
\n
"
);
ExitProcess
(
1
);
}
continue
;
}
if
(
argv
[
i
][
0
]
!=
'/'
)
...
...
@@ -457,6 +484,7 @@ done:
HeapFree
(
GetProcessHeap
(),
0
,
args
);
HeapFree
(
GetProcessHeap
(),
0
,
dos_filename
);
HeapFree
(
GetProcessHeap
(),
0
,
parent_directory
);
HeapFree
(
GetProcessHeap
(),
0
,
title
);
if
(
sei
.
fMask
&
SEE_MASK_NOCLOSEPROCESS
)
{
DWORD
exitcode
;
...
...
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