Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libbluray
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
VideoLAN
libbluray
Commits
c692f790
Commit
c692f790
authored
Jul 03, 2010
by
hpi1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed USING_DLOPEN (handles are null)
parent
e8e9536b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/libbluray/bluray.c
src/libbluray/bluray.c
+3
-3
No files found.
src/libbluray/bluray.c
View file @
c692f790
...
@@ -126,7 +126,7 @@ static int _open_m2ts(BLURAY *bd)
...
@@ -126,7 +126,7 @@ static int _open_m2ts(BLURAY *bd)
bd
->
int_buf_off
=
6144
;
bd
->
int_buf_off
=
6144
;
X_FREE
(
f_name
);
X_FREE
(
f_name
);
if
(
bd
->
h_libbdplus
&&
bd
->
bdplus
)
{
if
(
bd
->
bdplus
)
{
#ifdef USING_DLOPEN
#ifdef USING_DLOPEN
fptr_p_void
bdplus_set_title
;
fptr_p_void
bdplus_set_title
;
bdplus_set_title
=
dl_dlsym
(
bd
->
h_libbdplus
,
"bdplus_set_title"
);
bdplus_set_title
=
dl_dlsym
(
bd
->
h_libbdplus
,
"bdplus_set_title"
);
...
@@ -291,7 +291,7 @@ void bd_close(BLURAY *bd)
...
@@ -291,7 +291,7 @@ void bd_close(BLURAY *bd)
{
{
bd_stop_bdj
(
bd
);
bd_stop_bdj
(
bd
);
if
(
bd
->
h_libaacs
&&
bd
->
aacs
)
{
if
(
bd
->
aacs
)
{
#ifdef USING_DLOPEN
#ifdef USING_DLOPEN
fptr_p_void
fptr
=
dl_dlsym
(
bd
->
h_libaacs
,
"aacs_close"
);
fptr_p_void
fptr
=
dl_dlsym
(
bd
->
h_libaacs
,
"aacs_close"
);
fptr
(
bd
->
aacs
);
// FIXME: NULL
fptr
(
bd
->
aacs
);
// FIXME: NULL
...
@@ -301,7 +301,7 @@ void bd_close(BLURAY *bd)
...
@@ -301,7 +301,7 @@ void bd_close(BLURAY *bd)
#endif
#endif
}
}
if
(
bd
->
h_libbdplus
&&
bd
->
bdplus
)
{
if
(
bd
->
bdplus
)
{
#ifdef USING_DLOPEN
#ifdef USING_DLOPEN
fptr_p_void
bdplus_free
=
dl_dlsym
(
bd
->
h_libbdplus
,
"bdplus_free"
);
fptr_p_void
bdplus_free
=
dl_dlsym
(
bd
->
h_libbdplus
,
"bdplus_free"
);
if
(
bdplus_free
)
bdplus_free
(
bd
->
bdplus
);
if
(
bdplus_free
)
bdplus_free
(
bd
->
bdplus
);
...
...
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