Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
352188c2
Commit
352188c2
authored
Sep 01, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
video_filter_rss: use the return value and fix mutex leak (the mutex was never
used but it will be used soon).
parent
bb7add17
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
modules/video_filter/rss.c
modules/video_filter/rss.c
+6
-1
No files found.
modules/video_filter/rss.c
View file @
352188c2
...
...
@@ -281,7 +281,11 @@ static int CreateFilter( vlc_object_t *p_this )
}
/* Parse the urls */
ParseUrls
(
p_filter
,
psz_urls
);
if
(
ParseUrls
(
p_filter
,
psz_urls
)
)
{
free
(
psz_urls
);
goto
error
;
}
free
(
psz_urls
);
if
(
FetchRSS
(
p_filter
)
)
...
...
@@ -328,6 +332,7 @@ static void DestroyFilter( vlc_object_t *p_this )
filter_t
*
p_filter
=
(
filter_t
*
)
p_this
;
filter_sys_t
*
p_sys
=
p_filter
->
p_sys
;
vlc_mutex_destroy
(
&
p_sys
->
lock
);
text_style_Delete
(
p_sys
->
p_style
);
free
(
p_sys
->
psz_marquee
);
FreeRSS
(
p_filter
);
...
...
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