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
b8faf36e
Commit
b8faf36e
authored
Jan 10, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
GetSymbol: adding a leading underscore is NOT correct on _all_ OSes
parent
fd8053d7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
30 deletions
+14
-30
src/modules/os.c
src/modules/os.c
+14
-30
No files found.
src/modules/os.c
View file @
b8faf36e
...
...
@@ -70,7 +70,7 @@
* Local prototypes
*****************************************************************************/
#ifdef HAVE_DYNAMIC_PLUGINS
static
void
*
GetSymbol
(
module_handle_t
,
const
char
*
);
static
void
*
module_Lookup
(
module_handle_t
,
const
char
*
);
#if defined(HAVE_DL_WINDOWS)
static
char
*
GetWindowsError
(
void
);
...
...
@@ -90,7 +90,8 @@ int module_Call( vlc_object_t *obj, module_t *p_module )
int
(
*
pf_symbol
)
(
module_t
*
p_module
);
/* Try to resolve the symbol */
pf_symbol
=
(
int
(
*
)(
module_t
*
))
GetSymbol
(
p_module
->
handle
,
psz_name
);
pf_symbol
=
(
int
(
*
)(
module_t
*
))
module_Lookup
(
p_module
->
handle
,
psz_name
);
if
(
pf_symbol
==
NULL
)
{
...
...
@@ -287,41 +288,24 @@ void module_Unload( module_handle_t handle )
}
/**
*
GetSymbol: get a symbol from a dynamic
library
*
Looks up a symbol from a dynamically loaded
library
*
* This function queries a loaded library for a symbol specified in a
* string, and returns a pointer to it. We don't check for dlerror() or
* similar functions, since we want a non-NULL symbol anyway.
* \param handle handle to the module
* \param psz_function function name
* \return nothing
*
* @param handle handle to the module
* @param psz_function function name
* @return NULL on error, or the address of the symbol
*/
static
void
*
_module_getsymbol
(
module_handle_t
,
const
char
*
);
static
void
*
GetSymbol
(
module_handle_t
handle
,
const
char
*
psz_function
)
{
void
*
p_symbol
=
_module_getsymbol
(
handle
,
psz_function
);
/* MacOS X dl library expects symbols to begin with "_". So do
* some other operating systems. That's really lame, but hey, what
* can we do ? */
if
(
p_symbol
==
NULL
)
{
char
psz_call
[
strlen
(
psz_function
)
+
2
];
psz_call
[
0
]
=
'_'
;
memcpy
(
psz_call
+
1
,
psz_function
,
sizeof
(
psz_call
)
-
1
);
p_symbol
=
_module_getsymbol
(
handle
,
psz_call
);
}
return
p_symbol
;
}
static
void
*
_module_getsymbol
(
module_handle_t
handle
,
const
char
*
psz_function
)
static
void
*
module_Lookup
(
module_handle_t
handle
,
const
char
*
psz_function
)
{
#if defined(HAVE_DL_DYLD)
NSSymbol
sym
=
NSLookupSymbolInModule
(
handle
,
psz_function
);
char
psz_call
[
strlen
(
psz_function
)
+
2
];
psz_call
[
0
]
=
'_'
;
memcpy
(
psz_call
+
1
,
psz_function
,
sizeof
(
psz_call
)
-
1
);
NSSymbol
sym
=
NSLookupSymbolInModule
(
handle
,
psz_call
);
return
NSAddressOfSymbol
(
sym
);
#elif defined(HAVE_DL_BEOS)
...
...
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