Replace _mesa_malloc, _mesa_calloc and _mesa_free with plain libc versions
[mesa.git] / src / mesa / drivers / dri / radeon / radeon_buffer_objects.c
index bc5915d3e432f9e87919681b610c66c337be0f60..0897dafbd8be05e08b5697d86c3433e13e0444d2 100644 (file)
@@ -70,7 +70,7 @@ radeonDeleteBufferObject(GLcontext * ctx,
         radeon_bo_unref(radeon_obj->bo);
     }
 
-    _mesa_free(radeon_obj);
+    free(radeon_obj);
 }