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
e4b68317
Commit
e4b68317
authored
Aug 30, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resync object leak check
parent
0aee55f5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
25 deletions
+18
-25
src/misc/objects.c
src/misc/objects.c
+18
-25
No files found.
src/misc/objects.c
View file @
e4b68317
...
...
@@ -305,40 +305,33 @@ static void vlc_object_destroy( vlc_object_t *p_this )
free
(
p_this
->
psz_header
);
if
(
p_this
->
p_libvlc
==
NULL
)
{
#ifndef NDEBUG
libvlc_global_data_t
*
p_global
=
(
libvlc_global_data_t
*
)
p_this
;
assert
(
p_global
==
vlc_global
()
);
/* Test for leaks */
if
(
p_priv
->
next
!=
p_this
)
if
(
VLC_OBJECT
(
p_this
->
p_libvlc
)
==
p_this
)
{
vlc_object_t
*
leaked
=
p_priv
->
next
,
*
first
=
leaked
;
do
/* Test for leaks */
vlc_object_t
*
leaked
=
p_priv
->
next
;
while
(
leaked
!=
p_this
)
{
/* We are leaking this object */
fprintf
(
stderr
,
"ERROR: leaking object (id:%i, type:%s, name:%s)
\n
"
,
leaked
->
i_object_id
,
leaked
->
psz_object_type
,
leaked
->
psz_object_name
);
/* Dump libvlc
object to ease debugging */
/* Dump
object to ease debugging */
vlc_object_dump
(
leaked
);
fflush
(
stderr
);
leaked
=
vlc_internals
(
leaked
)
->
next
;
}
while
(
leaked
!=
first
);
/* Dump global object to ease debugging */
if
(
p_priv
->
next
!=
p_this
)
/* Dump libvlc object to ease debugging */
vlc_object_dump
(
p_this
);
/* Strongly abort, cause we want these to be fixed */
abort
();
}
#endif
if
(
p_this
->
p_libvlc
==
NULL
)
/* We are the global object ... no need to lock. */
vlc_mutex_destroy
(
&
structure_lock
);
}
FREENULL
(
p_this
->
psz_object_name
);
...
...
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