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
f2014437
Commit
f2014437
authored
Dec 12, 2008
by
Sébastien Escudier
Committed by
Rémi Duraffort
Dec 12, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use NULL for pointer
Signed-off-by:
Rémi Duraffort
<
ivoire@videolan.org
>
parent
9ed799b9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/input/vlm.c
src/input/vlm.c
+2
-2
No files found.
src/input/vlm.c
View file @
f2014437
...
...
@@ -521,7 +521,7 @@ static int vlm_OnMediaUpdate( vlm_t *p_vlm, vlm_media_sys_t *p_media )
for
(
i
=
0
;
i
<
p_cfg
->
i_option
;
i
++
)
input_item_AddOption
(
p_media
->
vod
.
p_item
,
p_cfg
->
ppsz_option
[
i
]
);
p_cfg
->
ppsz_option
[
i
]
);
if
(
asprintf
(
&
psz_header
,
_
(
"Media: %s"
),
p_cfg
->
psz_name
)
==
-
1
)
psz_header
=
NULL
;
...
...
@@ -614,7 +614,7 @@ static int vlm_ControlMediaAdd( vlm_t *p_vlm, vlm_media_t *p_cfg, int64_t *p_id
msg_Err
(
p_vlm
,
"cannot find vod server"
);
vlc_object_detach
(
p_vlm
->
p_vod
);
vlc_object_release
(
p_vlm
->
p_vod
);
p_vlm
->
p_vod
=
0
;
p_vlm
->
p_vod
=
NULL
;
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