1
mirror of https://code.videolan.org/videolan/vlc synced 2024-10-03 01:31:53 +02:00

* 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.
This commit is contained in:
Derk-Jan Hartman 2003-05-27 22:42:58 +00:00
parent 82cf0f0735
commit 05339fb9b3

View 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 );
}