Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
89fddcd3
Commit
89fddcd3
authored
Feb 21, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't use char * to point to const char *, fix a memleak, and cleanups
parent
ebd02aaf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
17 deletions
+15
-17
src/misc/variables.c
src/misc/variables.c
+15
-17
No files found.
src/misc/variables.c
View file @
89fddcd3
...
@@ -1045,27 +1045,28 @@ int __var_TriggerCallback( vlc_object_t *p_this, const char *psz_name )
...
@@ -1045,27 +1045,28 @@ int __var_TriggerCallback( vlc_object_t *p_this, const char *psz_name )
*/
*/
void
var_OptionParse
(
vlc_object_t
*
p_obj
,
const
char
*
psz_option
)
void
var_OptionParse
(
vlc_object_t
*
p_obj
,
const
char
*
psz_option
)
{
{
char
*
psz_name
,
*
psz_value
=
strchr
(
psz_option
,
'='
)
;
char
*
psz_name
,
*
psz_value
;
int
i_
name_len
,
i_
type
;
int
i_type
;
vlc_bool_t
b_isno
=
VLC_FALSE
;
vlc_bool_t
b_isno
=
VLC_FALSE
;
vlc_value_t
val
;
vlc_value_t
val
;
val
.
psz_string
=
NULL
;
if
(
psz_value
)
i_name_len
=
psz_value
-
psz_option
;
val
.
psz_string
=
NULL
;
else
i_name_len
=
strlen
(
psz_option
);
/* It's too much of a hassle to remove the ':' when we parse
/* It's too much of a hassle to remove the ':' when we parse
* the cmd line :) */
* the cmd line :) */
if
(
psz_option
[
0
]
==
':'
)
if
(
psz_option
[
0
]
==
':'
)
{
psz_option
++
;
psz_option
++
;
i_name_len
--
;
}
if
(
i_name_len
==
0
)
return
;
if
(
!
psz_option
[
0
]
)
return
;
psz_name
=
strndup
(
psz_option
,
i_name_len
);
psz_name
=
strdup
(
psz_option
);
if
(
psz_value
)
psz_value
++
;
if
(
psz_name
==
NULL
)
return
;
psz_value
=
strchr
(
psz_name
,
'='
);
if
(
psz_value
!=
NULL
)
*
psz_value
++
=
'\0'
;
/* FIXME: :programs should be handled generically */
/* FIXME: :programs should be handled generically */
if
(
!
strcmp
(
psz_name
,
"programs"
)
)
if
(
!
strcmp
(
psz_name
,
"programs"
)
)
...
@@ -1088,10 +1089,8 @@ void var_OptionParse( vlc_object_t *p_obj, const char *psz_option )
...
@@ -1088,10 +1089,8 @@ void var_OptionParse( vlc_object_t *p_obj, const char *psz_option )
b_isno
=
VLC_TRUE
;
b_isno
=
VLC_TRUE
;
i_type
=
config_GetType
(
p_obj
,
psz_name
);
i_type
=
config_GetType
(
p_obj
,
psz_name
);
if
(
!
i_type
)
goto
cleanup
;
/* Option doesn't exist */
}
}
else
if
(
!
i_type
)
goto
cleanup
;
/* Option doesn't exist */
if
(
!
i_type
)
goto
cleanup
;
/* Option doesn't exist */
if
(
(
i_type
!=
VLC_VAR_BOOL
)
&&
if
(
(
i_type
!=
VLC_VAR_BOOL
)
&&
(
!
psz_value
||
!*
psz_value
)
)
goto
cleanup
;
/* Invalid value */
(
!
psz_value
||
!*
psz_value
)
)
goto
cleanup
;
/* Invalid value */
...
@@ -1116,7 +1115,7 @@ void var_OptionParse( vlc_object_t *p_obj, const char *psz_option )
...
@@ -1116,7 +1115,7 @@ void var_OptionParse( vlc_object_t *p_obj, const char *psz_option )
if
(
DIALOG_OK_YES
!=
intf_UserYesNo
(
p_obj
,
_
(
"WARNING: Unsafe Playlist"
),
description
,
_
(
"Yes"
),
_
(
"No"
),
NULL
)
)
if
(
DIALOG_OK_YES
!=
intf_UserYesNo
(
p_obj
,
_
(
"WARNING: Unsafe Playlist"
),
description
,
_
(
"Yes"
),
_
(
"No"
),
NULL
)
)
{
{
msg_Err
(
p_obj
,
"option %s is unsafe and is blocked by security policy"
,
psz_name
);
msg_Err
(
p_obj
,
"option %s is unsafe and is blocked by security policy"
,
psz_name
);
return
;
goto
cleanup
;
}
}
}
}
default:
default:
...
@@ -1183,12 +1182,11 @@ void var_OptionParse( vlc_object_t *p_obj, const char *psz_option )
...
@@ -1183,12 +1182,11 @@ void var_OptionParse( vlc_object_t *p_obj, const char *psz_option )
default:
default:
goto
cleanup
;
goto
cleanup
;
break
;
}
}
var_Set
(
p_obj
,
psz_name
,
val
);
var_Set
(
p_obj
,
psz_name
,
val
);
cleanup:
cleanup:
free
(
psz_name
);
free
(
psz_name
);
}
}
...
...
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