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
71c06757
Commit
71c06757
authored
Jul 13, 2008
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
playlist: Fix a warning about an unitialized ptr.
parent
fe6b1c62
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/playlist/tree.c
src/playlist/tree.c
+2
-2
No files found.
src/playlist/tree.c
View file @
71c06757
...
...
@@ -59,7 +59,7 @@ playlist_item_t * playlist_NodeCreate( playlist_t *p_playlist,
playlist_item_t
*
p_parent
,
int
i_flags
,
input_item_t
*
p_input
)
{
input_item_t
*
p_new_input
;
input_item_t
*
p_new_input
=
NULL
;
playlist_item_t
*
p_item
;
if
(
!
psz_name
)
psz_name
=
_
(
"Undefined"
);
...
...
@@ -69,7 +69,7 @@ playlist_item_t * playlist_NodeCreate( playlist_t *p_playlist,
psz_name
,
0
,
NULL
,
-
1
,
ITEM_TYPE_NODE
);
p_item
=
playlist_ItemNewFromInput
(
VLC_OBJECT
(
p_playlist
),
p_input
?
p_input
:
p_new_input
);
if
(
!
p
_input
)
if
(
p_new
_input
)
vlc_gc_decref
(
p_new_input
);
if
(
p_item
==
NULL
)
return
NULL
;
...
...
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