Changeset 119907171ba2165f0259e37baf19cdf9e9f595a5
- Timestamp:
- 31/05/08 18:01:04
(4 months ago)
- Author:
- Rémi Denis-Courmont <rdenis@simphalempin.com>
- git-committer:
- Rémi Denis-Courmont <rdenis@simphalempin.com> 1212249664 +0300
- git-parent:
[2606ef55873bcd2b1366c161b97d8d693facd26a]
- git-author:
- Rémi Denis-Courmont <rdenis@simphalempin.com> 1212247823 +0300
- Message:
Ignore vlc_object_wait return value
We need to check vlc_object_alive() anyway, due to the intrinsic race
condition whereby the thread is killed before it's got the chance to
lock its object and call vlc_object_wait().
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rfb04f24 |
r1199071 |
|
| 2454 | 2454 | b_die = !vlc_object_alive( host ); |
|---|
| 2455 | 2455 | if( !b_die ) |
|---|
| 2456 | | b_die = vlc_object_wait( host ); |
|---|
| | 2456 | vlc_object_wait( host ); |
|---|
| 2457 | 2457 | } |
|---|
| 2458 | 2458 | vlc_object_unlock( host ); |
|---|