Commit ff1ededb authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Remove unhandled error warning

parent 50c84f60
...@@ -11,7 +11,6 @@ ...@@ -11,7 +11,6 @@
CThread::CThread(vlc_object_t *pOwner) CThread::CThread(vlc_object_t *pOwner)
{ {
int err;
m_pAtmoThread = (atmo_thread_t *)vlc_object_create( pOwner, m_pAtmoThread = (atmo_thread_t *)vlc_object_create( pOwner,
sizeof(atmo_thread_t) ); sizeof(atmo_thread_t) );
if(m_pAtmoThread) if(m_pAtmoThread)
...@@ -22,10 +21,7 @@ CThread::CThread(vlc_object_t *pOwner) ...@@ -22,10 +21,7 @@ CThread::CThread(vlc_object_t *pOwner)
vlc_object_attach( m_pAtmoThread, m_pOwner); vlc_object_attach( m_pAtmoThread, m_pOwner);
vlc_mutex_init( &m_TerminateLock ); vlc_mutex_init( &m_TerminateLock );
err = vlc_cond_init( &m_TerminateCond ); vlc_cond_init( &m_TerminateCond );
if(err) {
msg_Err( m_pAtmoThread, "vlc_cond_init failed %d",err);
}
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment