[vlc-commits] live555: remove NULL assignment after calloc
Ludovic Fauvet
git at videolan.org
Fri Aug 5 15:43:27 CEST 2016
vlc | branch: master | Ludovic Fauvet <etix at videolan.org> | Fri Aug 5 15:35:41 2016 +0200| [6c5ff3080f7b9886fbd00e1a871db6fa9838779f] | committer: Ludovic Fauvet
live555: remove NULL assignment after calloc
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6c5ff3080f7b9886fbd00e1a871db6fa9838779f
---
modules/access/live555.cpp | 3 ---
1 file changed, 3 deletions(-)
diff --git a/modules/access/live555.cpp b/modules/access/live555.cpp
index 12c505a..7d6049e 100644
--- a/modules/access/live555.cpp
+++ b/modules/access/live555.cpp
@@ -306,9 +306,6 @@ static int Open ( vlc_object_t *p_this )
msg_Dbg( p_demux, "version " LIVEMEDIA_LIBRARY_VERSION_STRING );
TAB_INIT( p_sys->i_track, p_sys->track );
- p_sys->f_npt = 0.;
- p_sys->f_npt_start = 0.;
- p_sys->f_npt_length = 0.;
p_sys->b_no_data = true;
p_sys->psz_path = strdup( p_demux->psz_location );
p_sys->b_force_mcast = var_InheritBool( p_demux, "rtsp-mcast" );
More information about the vlc-commits
mailing list