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

Remove unhandled error warning

parent 50c84f60
......@@ -11,7 +11,6 @@
CThread::CThread(vlc_object_t *pOwner)
{
int err;
m_pAtmoThread = (atmo_thread_t *)vlc_object_create( pOwner,
sizeof(atmo_thread_t) );
if(m_pAtmoThread)
......@@ -22,10 +21,7 @@ CThread::CThread(vlc_object_t *pOwner)
vlc_object_attach( m_pAtmoThread, m_pOwner);
vlc_mutex_init( &m_TerminateLock );
err = vlc_cond_init( &m_TerminateCond );
if(err) {
msg_Err( m_pAtmoThread, "vlc_cond_init failed %d",err);
}
vlc_cond_init( &m_TerminateCond );
}
}
......
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