[Mesa-dev] [PATCH 2/5] mesa: s/FREE/free/ in _mesa_free_errors_data()

Brian Paul brianp at vmware.com
Wed Apr 9 18:39:14 PDT 2014


---
 src/mesa/main/errors.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mesa/main/errors.c b/src/mesa/main/errors.c
index 9151718..d80fda0 100644
--- a/src/mesa/main/errors.c
+++ b/src/mesa/main/errors.c
@@ -980,7 +980,7 @@ _mesa_free_errors_data(struct gl_context *ctx)
       for (i = 0; i <= ctx->Debug->GroupStackDepth; i++) {
          free_errors_data(ctx, i);
       }
-      FREE(ctx->Debug);
+      free(ctx->Debug);
       /* set to NULL just in case it is used before context is completely gone. */
       ctx->Debug = NULL;
    }
-- 
1.7.10.4



More information about the mesa-dev mailing list