]> git.sesse.net Git - vlc/commitdiff
* Turn mem leaks into warning's instead of errors. Users seem to think that
authorDerk-Jan Hartman <hartman@videolan.org>
Tue, 27 May 2003 22:42:58 +0000 (22:42 +0000)
committerDerk-Jan Hartman <hartman@videolan.org>
Tue, 27 May 2003 22:42:58 +0000 (22:42 +0000)
  mem leaks will kernel panic there machine or something ;)A
  This will generate less bugreports, yet keep them visible to those who
  should and will care.

src/input/input_ext-plugins.c

index 2802c14ac01fb88bc42533e06324ec04365a3996..c97afc0daf801b73f82b3b06be13f5b2d127af1e 100644 (file)
@@ -2,7 +2,7 @@
  * input_ext-plugins.c: useful functions for access and demux plug-ins
  *****************************************************************************
  * Copyright (C) 2001, 2002 VideoLAN
- * $Id: input_ext-plugins.c,v 1.31 2003/03/24 17:15:30 gbazin Exp $
+ * $Id: input_ext-plugins.c,v 1.32 2003/05/27 22:42:58 hartman Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *
@@ -145,7 +145,7 @@ void input_BuffersEnd( input_thread_t * p_input, input_buffers_t * p_buffers )
 
         if( p_buffers->i_allocated )
         {
-            msg_Err( p_input, "%u bytes have not been freed, "
+            msg_Warn( p_input, "%u bytes have not been freed, "
                               "expect memory leak", p_buffers->i_allocated );
         }