Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
f864df7f
Commit
f864df7f
authored
Apr 22, 2008
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
psz_object_name should not be const! (else module name aliasing cannot work)
parent
e8e2bcf0
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
21 additions
and
15 deletions
+21
-15
include/vlc_common.h
include/vlc_common.h
+1
-1
modules/misc/freetype.c
modules/misc/freetype.c
+1
-1
src/libvlc-common.c
src/libvlc-common.c
+6
-4
src/misc/objects.c
src/misc/objects.c
+2
-0
src/modules/entry.c
src/modules/entry.c
+6
-3
src/modules/modules.c
src/modules/modules.c
+2
-3
src/playlist/thread.c
src/playlist/thread.c
+2
-2
src/stream_output/sap.c
src/stream_output/sap.c
+1
-1
No files found.
include/vlc_common.h
View file @
f864df7f
...
...
@@ -523,7 +523,7 @@ typedef struct vlc_object_internals_t vlc_object_internals_t;
int i_object_id; \
int i_object_type; \
const char *psz_object_type; \
c
onst char *psz_object_name;
\
c
har *psz_object_name;
\
\
/* Messages header */
\
char *psz_header; \
...
...
modules/misc/freetype.c
View file @
f864df7f
...
...
@@ -386,7 +386,7 @@ static int Create( vlc_object_t *p_this )
VLC_OBJECT_GENERIC
);
if
(
p_fontbuilder
)
{
p_fontbuilder
->
psz_object_name
=
"fontlist builder"
;
p_fontbuilder
->
psz_object_name
=
strdup
(
"fontlist builder"
)
;
vlc_object_attach
(
p_fontbuilder
,
p_filter
->
p_libvlc
);
var_Create
(
p_fontbuilder
,
"build-done"
,
VLC_VAR_BOOL
);
...
...
src/libvlc-common.c
View file @
f864df7f
...
...
@@ -187,7 +187,7 @@ libvlc_int_t * libvlc_InternalCreate( void )
p_libvlc
->
p_playlist
=
NULL
;
p_libvlc
->
p_interaction
=
NULL
;
p_libvlc
->
p_vlm
=
NULL
;
p_libvlc
->
psz_object_name
=
"libvlc"
;
p_libvlc
->
psz_object_name
=
strdup
(
"libvlc"
)
;
/* Initialize message queue */
msg_Create
(
p_libvlc
);
...
...
@@ -254,16 +254,18 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
/* Get the executable name (similar to the basename command) */
if
(
i_argc
>
0
)
{
const
char
*
exe
=
p_libvlc
->
psz_object_name
=
ppsz_argv
[
0
];
const
char
*
exe
=
strdup
(
ppsz_argv
[
0
]
);
const
char
*
tmp
=
exe
;
while
(
*
exe
)
{
if
(
*
exe
++
==
'/'
)
p_libvlc
->
psz_object_name
=
exe
;
tmp
=
exe
;
}
p_libvlc
->
psz_object_name
=
strdup
(
tmp
);
}
else
{
p_libvlc
->
psz_object_name
=
"vlc"
;
p_libvlc
->
psz_object_name
=
strdup
(
"vlc"
)
;
}
/*
...
...
src/misc/objects.c
View file @
f864df7f
...
...
@@ -427,6 +427,8 @@ static void vlc_object_destroy( vlc_object_t *p_this )
vlc_mutex_destroy
(
&
structure_lock
);
}
FREENULL
(
p_this
->
psz_object_name
);
#if defined(WIN32) || defined(UNDER_CE)
/* if object has an associated thread, close it now */
if
(
p_priv
->
thread_id
.
hThread
)
...
...
src/modules/entry.c
View file @
f864df7f
...
...
@@ -41,7 +41,8 @@ module_t *vlc_module_create (vlc_object_t *obj)
return
NULL
;
module
->
b_reentrant
=
module
->
b_unloadable
=
true
;
module
->
psz_object_name
=
module
->
psz_longname
=
default_name
;
module
->
psz_object_name
=
strdup
(
default_name
);
module
->
psz_longname
=
default_name
;
module
->
psz_capability
=
(
char
*
)
""
;
module
->
i_score
=
1
;
module
->
i_config_items
=
module
->
i_bool_items
=
0
;
...
...
@@ -68,7 +69,7 @@ module_t *vlc_submodule_create (module_t *module)
memcpy
(
submodule
->
pp_shortcuts
,
module
->
pp_shortcuts
,
sizeof
(
submodule
->
pp_shortcuts
));
submodule
->
psz_object_name
=
module
->
psz_object_name
;
submodule
->
psz_object_name
=
strdup
(
module
->
psz_object_name
)
;
submodule
->
psz_shortname
=
module
->
psz_shortname
;
submodule
->
psz_longname
=
module
->
psz_longname
;
submodule
->
psz_capability
=
module
->
psz_capability
;
...
...
@@ -131,7 +132,9 @@ int vlc_module_set (module_t *module, int propid, void *value)
break
;
case
VLC_MODULE_NAME
:
module
->
pp_shortcuts
[
0
]
=
module
->
psz_object_name
=
(
char
*
)
value
;
free
(
module
->
psz_object_name
);
module
->
psz_object_name
=
strdup
(
(
char
*
)
value
);
module
->
pp_shortcuts
[
0
]
=
(
char
*
)
value
;
if
(
module
->
psz_longname
==
default_name
)
module
->
psz_longname
=
(
char
*
)
value
;
break
;
...
...
src/modules/modules.c
View file @
f864df7f
...
...
@@ -123,7 +123,7 @@ void __module_InitBank( vlc_object_t *p_this )
if
(
p_libvlc_global
->
p_module_bank
==
NULL
)
{
p_bank
=
vlc_object_create
(
p_this
,
sizeof
(
module_bank_t
)
);
p_bank
->
psz_object_name
=
"module bank"
;
p_bank
->
psz_object_name
=
strdup
(
"module bank"
)
;
p_bank
->
i_usage
=
1
;
p_bank
->
i_cache
=
p_bank
->
i_loaded_cache
=
0
;
p_bank
->
pp_cache
=
p_bank
->
pp_loaded_cache
=
NULL
;
...
...
@@ -1314,7 +1314,6 @@ static void DupModule( module_t *p_module )
/* We strdup() these entries so that they are still valid when the
* module is unloaded. */
/* This one is a (const char *) that will never get freed. */
p_module
->
psz_object_name
=
strdup
(
p_module
->
psz_object_name
);
p_module
->
psz_capability
=
strdup
(
p_module
->
psz_capability
);
p_module
->
psz_shortname
=
p_module
->
psz_shortname
?
...
...
@@ -1349,7 +1348,7 @@ static void UndupModule( module_t *p_module )
free
(
*
pp_shortcut
);
}
free
(
p_module
->
psz_object_name
);
FREENULL
(
p_module
->
psz_object_name
);
free
(
p_module
->
psz_capability
);
free
(
p_module
->
psz_shortname
);
free
(
p_module
->
psz_longname
);
...
...
src/playlist/thread.c
View file @
f864df7f
...
...
@@ -61,7 +61,7 @@ void __playlist_ThreadCreate( vlc_object_t *p_parent )
// Preparse
p_playlist
->
p_preparse
=
vlc_object_create
(
p_playlist
,
sizeof
(
playlist_preparse_t
)
);
p_playlist
->
p_preparse
->
psz_object_name
=
"preparser"
;
p_playlist
->
p_preparse
->
psz_object_name
=
strdup
(
"preparser"
)
;
if
(
!
p_playlist
->
p_preparse
)
{
msg_Err
(
p_playlist
,
"unable to create preparser"
);
...
...
@@ -85,7 +85,7 @@ void __playlist_ThreadCreate( vlc_object_t *p_parent )
// Secondary Preparse
p_playlist
->
p_fetcher
=
vlc_object_create
(
p_playlist
,
sizeof
(
playlist_fetcher_t
)
);
p_playlist
->
p_fetcher
->
psz_object_name
=
"fetcher"
;
p_playlist
->
p_fetcher
->
psz_object_name
=
strdup
(
"fetcher"
)
;
if
(
!
p_playlist
->
p_fetcher
)
{
msg_Err
(
p_playlist
,
"unable to create secondary preparser"
);
...
...
src/stream_output/sap.c
View file @
f864df7f
...
...
@@ -128,7 +128,7 @@ sap_handler_t *announce_SAPHandlerCreate( announce_handler_t *p_announce )
return
NULL
;
}
p_sap
->
psz_object_name
=
"sap announcer"
;
p_sap
->
psz_object_name
=
strdup
(
"sap announcer"
)
;
vlc_mutex_init
(
p_sap
,
&
p_sap
->
object_lock
);
...
...
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