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
d8059014
Commit
d8059014
authored
Jul 06, 2008
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
playlist: Print a destroyed message when the playlist, fetcher and preparser are destroyed.
parent
e91ee32a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
src/playlist/engine.c
src/playlist/engine.c
+2
-0
src/playlist/thread.c
src/playlist/thread.c
+2
-0
No files found.
src/playlist/engine.c
View file @
d8059014
...
...
@@ -173,6 +173,8 @@ static void playlist_Destructor( vlc_object_t * p_this )
if
(
p_playlist
->
p_fetcher
)
vlc_object_release
(
p_playlist
->
p_fetcher
);
msg_Dbg
(
p_this
,
"Destroyed"
);
}
/* Destroy remaining objects */
...
...
src/playlist/thread.c
View file @
d8059014
...
...
@@ -187,10 +187,12 @@ static void PreparseDestructor( vlc_object_t * p_this )
{
playlist_preparse_t
*
p_preparse
=
(
playlist_preparse_t
*
)
p_this
;
free
(
p_preparse
->
pp_waiting
);
msg_Dbg
(
p_this
,
"Destroyed"
);
}
static
void
FetcherDestructor
(
vlc_object_t
*
p_this
)
{
playlist_fetcher_t
*
p_fetcher
=
(
playlist_fetcher_t
*
)
p_this
;
free
(
p_fetcher
->
pp_waiting
);
msg_Dbg
(
p_this
,
"Destroyed"
);
}
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