Changeset b1a9a82e38f91f51859c7f87eee3695715ab0c5b
- Timestamp:
- 12/28/07 12:36:57
(8 months ago)
- Author:
- Ilkka Ollakka <ileoo@videolan.org>
- git-committer:
- Ilkka Ollakka <ileoo@videolan.org> 1198841817 +0000
- git-parent:
[7d020526b38c42d366eb7619907398dbe8ab2ce4]
- git-author:
- Ilkka Ollakka <ileoo@videolan.org> 1198841817 +0000
- Message:
small fix for http-streaming, don't set b_die to true in beginning if
object is alive.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r7dfd1a1 |
rb1a9a82 |
|
| 2036 | 2036 | vlc_object_lock( host ); |
|---|
| 2037 | 2037 | evfd = vlc_object_waitpipe( VLC_OBJECT( host ) ); |
|---|
| 2038 | | b_die = vlc_object_alive( host ); |
|---|
| | 2038 | b_die = !vlc_object_alive( host ); |
|---|
| 2039 | 2039 | vlc_object_unlock( host ); |
|---|
| 2040 | 2040 | |
|---|