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
afbc7600
Commit
afbc7600
authored
Jun 20, 2010
by
Jakob Leben
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
playlist_NodeRemoveItem(): set item's parent to NULL
parent
56c70401
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
src/playlist/tree.c
src/playlist/tree.c
+9
-1
No files found.
src/playlist/tree.c
View file @
afbc7600
...
@@ -248,15 +248,23 @@ int playlist_NodeRemoveItem( playlist_t *p_playlist,
...
@@ -248,15 +248,23 @@ int playlist_NodeRemoveItem( playlist_t *p_playlist,
PL_ASSERT_LOCKED
;
PL_ASSERT_LOCKED
;
(
void
)
p_playlist
;
(
void
)
p_playlist
;
int
ret
=
VLC_EGENERIC
;
for
(
int
i
=
0
;
i
<
p_parent
->
i_children
;
i
++
)
for
(
int
i
=
0
;
i
<
p_parent
->
i_children
;
i
++
)
{
{
if
(
p_parent
->
pp_children
[
i
]
==
p_item
)
if
(
p_parent
->
pp_children
[
i
]
==
p_item
)
{
{
REMOVE_ELEM
(
p_parent
->
pp_children
,
p_parent
->
i_children
,
i
);
REMOVE_ELEM
(
p_parent
->
pp_children
,
p_parent
->
i_children
,
i
);
ret
=
VLC_SUCCESS
;
}
}
}
}
return
VLC_SUCCESS
;
if
(
ret
==
VLC_SUCCESS
)
{
assert
(
p_item
->
p_parent
==
p_parent
);
p_item
->
p_parent
=
NULL
;
}
return
ret
;
}
}
/**
/**
...
...
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