Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
34f2fc37
Commit
34f2fc37
authored
Apr 13, 2014
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
addons: fix invalid function cast
parent
5631d280
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/misc/addons.c
src/misc/addons.c
+2
-2
No files found.
src/misc/addons.c
View file @
34f2fc37
...
@@ -327,7 +327,7 @@ static void *FinderThread( void *p_data )
...
@@ -327,7 +327,7 @@ static void *FinderThread( void *p_data )
for
(
;;
)
for
(
;;
)
{
{
vlc_mutex_lock
(
&
p_manager
->
p_priv
->
finder
.
lock
);
vlc_mutex_lock
(
&
p_manager
->
p_priv
->
finder
.
lock
);
vlc_cleanup_push
(
vlc_mutex_unlock
,
&
p_manager
->
p_priv
->
finder
.
lock
);
mutex_cleanup_push
(
&
p_manager
->
p_priv
->
finder
.
lock
);
while
(
p_manager
->
p_priv
->
finder
.
uris
.
i_size
==
0
)
while
(
p_manager
->
p_priv
->
finder
.
uris
.
i_size
==
0
)
{
{
vlc_cond_wait
(
&
p_manager
->
p_priv
->
finder
.
waitcond
,
vlc_cond_wait
(
&
p_manager
->
p_priv
->
finder
.
waitcond
,
...
@@ -441,7 +441,7 @@ static void *InstallerThread( void *p_data )
...
@@ -441,7 +441,7 @@ static void *InstallerThread( void *p_data )
for
(
;;
)
for
(
;;
)
{
{
vlc_mutex_lock
(
&
p_manager
->
p_priv
->
installer
.
lock
);
vlc_mutex_lock
(
&
p_manager
->
p_priv
->
installer
.
lock
);
vlc_cleanup_push
(
vlc_mutex_unlock
,
&
p_manager
->
p_priv
->
installer
.
lock
);
mutex_cleanup_push
(
&
p_manager
->
p_priv
->
installer
.
lock
);
while
(
!
p_manager
->
p_priv
->
installer
.
entries
.
i_size
)
while
(
!
p_manager
->
p_priv
->
installer
.
entries
.
i_size
)
{
{
/* No queued addons */
/* No queued addons */
...
...
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