From: Brian Paul Date: Fri, 18 Mar 2011 02:31:58 +0000 (-0600) Subject: mesa: only report up to 50 _mesa_problem() calls X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=582570a04c73bc304e16af63621b594e0fc39aea;p=mesa.git mesa: only report up to 50 _mesa_problem() calls http://bugs.freedesktop.org/show_bug.cgi?id=35200 reports a disk partition getting filled because of warning messages. Stop emitting after 50. --- diff --git a/src/mesa/main/imports.c b/src/mesa/main/imports.c index bf89815f2d3..f262b25c718 100644 --- a/src/mesa/main/imports.c +++ b/src/mesa/main/imports.c @@ -930,14 +930,20 @@ _mesa_problem( const struct gl_context *ctx, const char *fmtString, ... ) { va_list args; char str[MAXSTRING]; + static int numCalls = 0; + (void) ctx; - va_start( args, fmtString ); - vsnprintf( str, MAXSTRING, fmtString, args ); - va_end( args ); + if (numCalls < 50) { + numCalls++; - fprintf(stderr, "Mesa %s implementation error: %s\n", MESA_VERSION_STRING, str); - fprintf(stderr, "Please report at bugs.freedesktop.org\n"); + va_start( args, fmtString ); + vsnprintf( str, MAXSTRING, fmtString, args ); + va_end( args ); + fprintf(stderr, "Mesa %s implementation error: %s\n", + MESA_VERSION_STRING, str); + fprintf(stderr, "Please report at bugs.freedesktop.org\n"); + } }