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
6f4778fa
Commit
6f4778fa
authored
Jun 10, 2006
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/playlist/tree.c: fix memory leak.
parent
a1bf965d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/playlist/tree.c
src/playlist/tree.c
+3
-2
No files found.
src/playlist/tree.c
View file @
6f4778fa
...
@@ -54,7 +54,7 @@ playlist_item_t * playlist_NodeCreate( playlist_t *p_playlist, char *psz_name,
...
@@ -54,7 +54,7 @@ playlist_item_t * playlist_NodeCreate( playlist_t *p_playlist, char *psz_name,
input_item_t
*
p_input
;
input_item_t
*
p_input
;
playlist_item_t
*
p_item
;
playlist_item_t
*
p_item
;
if
(
!
psz_name
)
psz_name
=
strdup
(
_
(
"Undefined"
)
);
if
(
!
psz_name
)
psz_name
=
_
(
"Undefined"
);
p_input
=
input_ItemNewWithType
(
VLC_OBJECT
(
p_playlist
),
NULL
,
psz_name
,
p_input
=
input_ItemNewWithType
(
VLC_OBJECT
(
p_playlist
),
NULL
,
psz_name
,
0
,
NULL
,
-
1
,
ITEM_TYPE_NODE
);
0
,
NULL
,
-
1
,
ITEM_TYPE_NODE
);
p_input
->
i_id
=
++
p_playlist
->
i_last_input_id
;
p_input
->
i_id
=
++
p_playlist
->
i_last_input_id
;
...
@@ -128,7 +128,8 @@ int playlist_NodeEmpty( playlist_t *p_playlist, playlist_item_t *p_root,
...
@@ -128,7 +128,8 @@ int playlist_NodeEmpty( playlist_t *p_playlist, playlist_item_t *p_root,
int
playlist_NodeDelete
(
playlist_t
*
p_playlist
,
playlist_item_t
*
p_root
,
int
playlist_NodeDelete
(
playlist_t
*
p_playlist
,
playlist_item_t
*
p_root
,
vlc_bool_t
b_delete_items
,
vlc_bool_t
b_force
)
vlc_bool_t
b_delete_items
,
vlc_bool_t
b_force
)
{
{
int
i
,
i_top
,
i_bottom
;
int
i
;
if
(
p_root
->
i_children
==
-
1
)
if
(
p_root
->
i_children
==
-
1
)
{
{
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
...
...
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