Changeset 25fd4bfdc8ec2fc713f8bd66525ada82743f9080
- Timestamp:
- 16/08/07 21:04:26
(1 year ago)
- Author:
- Pierre d'Herbemont <pdherbemont@videolan.org>
- git-committer:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1187291066 +0000
- git-parent:
[5d963f01d9771ed9a2d2b966843a50ee6e71cd0b]
- git-author:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1187291066 +0000
- Message:
media_instance.c: Don't forget mutex destruction.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rc09a926 |
r25fd4bf |
|
| 264 | 264 | return; /* no need to worry about no input thread */ |
|---|
| 265 | 265 | } |
|---|
| | 266 | vlc_mutex_destroy( &p_mi->object_lock ); |
|---|
| 266 | 267 | |
|---|
| 267 | 268 | input_DestroyThread( p_input_thread ); |
|---|
| … | … | |
| 290 | 291 | } |
|---|
| 291 | 292 | vlc_mutex_unlock( &p_mi->object_lock ); |
|---|
| | 293 | vlc_mutex_destroy( &p_mi->object_lock ); |
|---|
| 292 | 294 | |
|---|
| 293 | 295 | libvlc_event_manager_release( p_mi->p_event_manager ); |
|---|
| … | … | |
| 324 | 326 | |
|---|
| 325 | 327 | vlc_mutex_lock( &p_mi->object_lock ); |
|---|
| 326 | | |
|---|
| | 328 | |
|---|
| 327 | 329 | release_input_thread( p_mi ); |
|---|
| 328 | 330 | |
|---|