Commit cc506211 authored by Laurent Aimar's avatar Laurent Aimar

Send input dead event only once.

parent 2c1a1fdf
...@@ -519,6 +519,9 @@ static void *Run( vlc_object_t *p_this ) ...@@ -519,6 +519,9 @@ static void *Run( vlc_object_t *p_this )
{ {
/* If we failed, wait before we are killed, and exit */ /* If we failed, wait before we are killed, and exit */
WaitDie( p_input ); WaitDie( p_input );
/* Tell we're dead */
input_SendEventDead( p_input );
goto exit; goto exit;
} }
...@@ -532,9 +535,6 @@ static void *Run( vlc_object_t *p_this ) ...@@ -532,9 +535,6 @@ static void *Run( vlc_object_t *p_this )
End( p_input ); End( p_input );
exit: exit:
/* Tell we're dead */
input_SendEventDead( p_input );
vlc_restorecancel( canc ); vlc_restorecancel( canc );
return NULL; return NULL;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment