Changeset 6ee349c97a50a61c7d81769fd22cd6a9a4a8aacf

Show
Ignore:
Timestamp:
05/01/06 22:33:20 (3 years ago)
Author:
Damien Fouilleul <damienf@videolan.org>
git-committer:
Damien Fouilleul <damienf@videolan.org> 1136496800 +0000
git-parent:

[097b4c8e04765de491097d6e5b59fecf6c9f0ba9]

git-author:
Damien Fouilleul <damienf@videolan.org> 1136496800 +0000
Message:

messages.c: message bank lock is still in use and still needs initializing :)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/misc/messages.c

    rca02d3d r6ee349c  
    7373void __msg_Create( vlc_object_t *p_this ) 
    7474{ 
     75    vlc_mutex_init( p_this, &(p_this->p_libvlc->msg_bank.lock) ); 
     76 
    7577    CreateMsgQueue( p_this, MSG_QUEUE_NORMAL ); 
    7678    CreateMsgQueue( p_this, MSG_QUEUE_HTTPD_ACCESS ); 
     
    148150        vlc_mutex_destroy( &p_queue->lock ); 
    149151    } 
     152    vlc_mutex_destroy( &(p_this->p_libvlc->msg_bank.lock) ); 
    150153} 
    151154