Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
69cd8267
Commit
69cd8267
authored
Mar 29, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
getopt: remove useless global variable
parent
8fc0329d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
8 deletions
+1
-8
src/config/getopt.c
src/config/getopt.c
+1
-8
No files found.
src/config/getopt.c
View file @
69cd8267
...
...
@@ -66,12 +66,6 @@ char *vlc_optarg = NULL;
/* 1003.2 says this must be 1 before any call. */
int
vlc_optind
=
1
;
/* Formerly, initialization of getopt depended on optind==0, which
causes problems with re-calling getopt as programs generally don't
know that. */
static
int
vlc_getopt_initialized
=
0
;
/* The next char to be scanned in the option-element
in which the last option character we returned was found.
This allows us to pick up the scan where we left off.
...
...
@@ -303,11 +297,10 @@ int
{
vlc_optarg
=
NULL
;
if
(
!
vlc_getopt_initialized
||
vlc_optind
==
0
)
if
(
vlc_optind
==
0
)
{
optstring
=
vlc_getopt_initialize
(
argc
,
argv
,
optstring
);
vlc_optind
=
1
;
/* Don't scan ARGV[0], the program name. */
vlc_getopt_initialized
=
1
;
}
#define NONOPTION_P (argv[vlc_optind][0] != '-' || argv[vlc_optind][1] == '\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