Commit f2014437 authored by Sébastien Escudier's avatar Sébastien Escudier Committed by Rémi Duraffort

Use NULL for pointer

Signed-off-by: default avatarRémi Duraffort <ivoire@videolan.org>
parent 9ed799b9
...@@ -614,7 +614,7 @@ static int vlm_ControlMediaAdd( vlm_t *p_vlm, vlm_media_t *p_cfg, int64_t *p_id ...@@ -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" ); msg_Err( p_vlm, "cannot find vod server" );
vlc_object_detach( p_vlm->p_vod ); vlc_object_detach( p_vlm->p_vod );
vlc_object_release( p_vlm->p_vod ); vlc_object_release( p_vlm->p_vod );
p_vlm->p_vod = 0; p_vlm->p_vod = NULL;
return VLC_EGENERIC; return VLC_EGENERIC;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment