changeset 11226:db6627275cf7

10l
author alex
date Wed, 22 Oct 2003 17:30:13 +0000
parents 48bb1fd37d2a
children a7cbee9f21f7
files libmpdemux/asf_mmst_streaming.c
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libmpdemux/asf_mmst_streaming.c	Wed Oct 22 17:26:15 2003 +0000
+++ b/libmpdemux/asf_mmst_streaming.c	Wed Oct 22 17:30:13 2003 +0000
@@ -107,13 +107,12 @@
 {
   int i;
 
-  memset (dest, 0, 1000);
-
   for (i=0; i<len; i++) {
     dest[i*2] = src[i];
     dest[i*2+1] = 0;
   }
 
+  /* trailing zeroes */
   dest[i*2] = 0;
   dest[i*2+1] = 0;
 }