Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
5a68b3bf
Commit
5a68b3bf
authored
Aug 17, 2007
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
misc/events.c: Don't call an invalid ptr (oops).
parent
91956ad8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/misc/events.c
src/misc/events.c
+3
-3
No files found.
src/misc/events.c
View file @
5a68b3bf
...
@@ -127,7 +127,7 @@ void vlc_event_send( vlc_event_manager_t * p_em,
...
@@ -127,7 +127,7 @@ void vlc_event_send( vlc_event_manager_t * p_em,
{
{
vlc_event_listeners_group_t
*
listeners_group
;
vlc_event_listeners_group_t
*
listeners_group
;
vlc_event_listener_t
*
listener
;
vlc_event_listener_t
*
listener
;
vlc_event_callback_t
func
;
vlc_event_callback_t
func
=
NULL
;
void
*
user_data
;
void
*
user_data
;
/* Fill event with the sending object now */
/* Fill event with the sending object now */
...
@@ -146,8 +146,8 @@ void vlc_event_send( vlc_event_manager_t * p_em,
...
@@ -146,8 +146,8 @@ void vlc_event_send( vlc_event_manager_t * p_em,
}
}
FOREACH_END
()
FOREACH_END
()
vlc_mutex_unlock
(
&
p_em
->
object_lock
);
vlc_mutex_unlock
(
&
p_em
->
object_lock
);
if
(
func
)
func
(
p_event
,
user_data
);
func
(
p_event
,
user_data
);
}
}
/**
/**
...
...
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