Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
a2b24c29
Commit
a2b24c29
authored
Nov 17, 2007
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
control: Remove libvlc_event_fini exception handling, as we don't need it.
parent
19c4b89b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
src/control/core.c
src/control/core.c
+1
-1
src/control/event.c
src/control/event.c
+1
-1
src/control/libvlc_internal.h
src/control/libvlc_internal.h
+1
-1
No files found.
src/control/core.c
View file @
a2b24c29
...
...
@@ -139,7 +139,7 @@ void libvlc_release( libvlc_instance_t *p_instance, libvlc_exception_t *p_e )
vlc_mutex_lock
(
lock
);
refs
=
--
p_instance
->
ref_count
;
if
(
refs
==
0
)
libvlc_event_fini
(
p_instance
,
p_e
);
libvlc_event_fini
(
p_instance
);
vlc_mutex_unlock
(
lock
);
if
(
refs
==
0
)
...
...
src/control/event.c
View file @
a2b24c29
...
...
@@ -51,7 +51,7 @@ void libvlc_event_init( libvlc_instance_t *p_instance, libvlc_exception_t *p_e )
*
* finalization function.
**************************************************************************/
void
libvlc_event_fini
(
libvlc_instance_t
*
p_instance
,
libvlc_exception_t
*
p_e
)
void
libvlc_event_fini
(
libvlc_instance_t
*
p_instance
)
{
}
...
...
src/control/libvlc_internal.h
View file @
a2b24c29
...
...
@@ -47,7 +47,7 @@ VLC_EXPORT (int, libvlc_InternalAddIntf, ( libvlc_int_t *, const char *, vlc_boo
vlc_bool_t
,
int
,
const
char
*
const
*
)
);
VLC_EXPORT
(
void
,
libvlc_event_init
,
(
libvlc_instance_t
*
,
libvlc_exception_t
*
)
);
VLC_EXPORT
(
void
,
libvlc_event_fini
,
(
libvlc_instance_t
*
,
libvlc_exception_t
*
)
);
VLC_EXPORT
(
void
,
libvlc_event_fini
,
(
libvlc_instance_t
*
)
);
/***************************************************************************
...
...
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