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
a5cbdcb8
Commit
a5cbdcb8
authored
Mar 26, 2011
by
Eric Pouech
Committed by
Alexandre Julliard
Mar 28, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winegcc: Check that option argument is within command line parameters.
parent
7b544af1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
winegcc.c
tools/winegcc/winegcc.c
+5
-1
No files found.
tools/winegcc/winegcc.c
View file @
a5cbdcb8
...
...
@@ -1297,7 +1297,11 @@ int main(int argc, char **argv)
next_is_arg
=
1
;
break
;
}
if
(
next_is_arg
)
option_arg
=
argv
[
i
+
1
];
if
(
next_is_arg
)
{
if
(
i
+
1
>=
argc
)
error
(
"option -%c requires an argument
\n
"
,
argv
[
i
][
1
]);
option_arg
=
argv
[
i
+
1
];
}
/* determine what options go 'as is' to the linker & the compiler */
raw_compiler_arg
=
raw_linker_arg
=
0
;
...
...
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