Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
ff1ededb
Commit
ff1ededb
authored
May 21, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unhandled error warning
parent
50c84f60
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
5 deletions
+1
-5
modules/video_filter/atmo/AtmoThread.cpp
modules/video_filter/atmo/AtmoThread.cpp
+1
-5
No files found.
modules/video_filter/atmo/AtmoThread.cpp
View file @
ff1ededb
...
...
@@ -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
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment