st/vega: Use FREE.
authorChia-I Wu <olv@lunarg.com>
Fri, 28 May 2010 05:07:34 +0000 (13:07 +0800)
committerChia-I Wu <olv@lunarg.com>
Sun, 30 May 2010 03:11:27 +0000 (11:11 +0800)
Match MALLOC with FREE.  Otherwise, it causes weird segfaults when built
with memory debugging.

src/gallium/state_trackers/vega/util_array.h

index 4343dfe36e29ba81f76f682b3c4119c00e89bf88..b2d22f476eedcd82d03087b3f98b5116f366f510 100644 (file)
@@ -65,7 +65,7 @@ static INLINE void array_destroy(struct array *array)
 {
    if (array)
       free(array->data);
-   free(array);
+   FREE(array);
 }
 
 static INLINE void array_resize(struct array *array, int num)