git.videolan.org
/
vlc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
50c84f6
)
Remove unhandled error warning
author
Rémi Denis-Courmont
<remi@remlab.net>
Thu, 21 May 2009 17:18:53 +0000
(20:18 +0300)
committer
Rémi Denis-Courmont
<remi@remlab.net>
Thu, 21 May 2009 17:18:53 +0000
(20:18 +0300)
modules/video_filter/atmo/AtmoThread.cpp
patch
|
blob
|
history
diff --git
a/modules/video_filter/atmo/AtmoThread.cpp
b/modules/video_filter/atmo/AtmoThread.cpp
index
3670d54
..
34d8b3f
100644
(file)
--- a/
modules/video_filter/atmo/AtmoThread.cpp
+++ b/
modules/video_filter/atmo/AtmoThread.cpp
@@
-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 );
}
}