Changeset b1a9a82e38f91f51859c7f87eee3695715ab0c5b

Show
Ignore:
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
  • src/network/httpd.c

    r7dfd1a1 rb1a9a82  
    20362036    vlc_object_lock( host ); 
    20372037    evfd = vlc_object_waitpipe( VLC_OBJECT( host ) ); 
    2038     b_die = vlc_object_alive( host ); 
     2038    b_die = !vlc_object_alive( host ); 
    20392039    vlc_object_unlock( host ); 
    20402040