Commit 05339fb9 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* Turn mem leaks into warning's instead of errors. Users seem to think that

  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.
parent 82cf0f07
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* input_ext-plugins.c: useful functions for access and demux plug-ins * input_ext-plugins.c: useful functions for access and demux plug-ins
***************************************************************************** *****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN * 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> * Authors: Christophe Massiot <massiot@via.ecp.fr>
* *
...@@ -145,7 +145,7 @@ void input_BuffersEnd( input_thread_t * p_input, input_buffers_t * p_buffers ) ...@@ -145,7 +145,7 @@ void input_BuffersEnd( input_thread_t * p_input, input_buffers_t * p_buffers )
if( p_buffers->i_allocated ) 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 ); "expect memory leak", p_buffers->i_allocated );
} }
......
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