Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
mediastreamer2
Commits
466a55b6
Commit
466a55b6
authored
Oct 15, 2012
by
Ghislain MARY
Browse files
Do not print symbols not found as errors.
parent
6711f8cf
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/android/loader.cpp
src/android/loader.cpp
+1
-1
No files found.
src/android/loader.cpp
View file @
466a55b6
...
@@ -12,7 +12,7 @@ Library::Library(void *handle){
...
@@ -12,7 +12,7 @@ Library::Library(void *handle){
void
*
Library
::
getSymbol
(
const
char
*
name
){
void
*
Library
::
getSymbol
(
const
char
*
name
){
void
*
symbol
=
dlsym
(
mHandle
,
name
);
void
*
symbol
=
dlsym
(
mHandle
,
name
);
if
(
symbol
==
NULL
){
if
(
symbol
==
NULL
){
ms_
error
(
"Could not find symbol %s"
,
name
);
ms_
message
(
"Could not find symbol %s"
,
name
);
}
}
return
symbol
;
return
symbol
;
}
}
...
...
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