mesa/src/mapi
Matt Turner 2b7a972e3f Don't cast the return value of malloc/realloc
This patch has been generated by the following Coccinelle semantic
patch:

// Don't cast the return value of malloc/realloc.
//
// Casting the return value of malloc/realloc only stands to hide
// errors.

@@
type T;
expression E1, E2;
@@
- (T)
(
_mesa_align_calloc(E1, E2)
|
_mesa_align_malloc(E1, E2)
|
calloc(E1, E2)
|
malloc(E1)
|
realloc(E1, E2)
)
2012-09-05 22:28:50 -07:00
..
es1api build: Fix GLES linkage with libglapi 2012-08-23 14:07:35 -07:00
es2api build: Fix installation of GLES2 headers 2012-08-23 14:07:35 -07:00
glapi Don't cast the return value of malloc/realloc 2012-09-05 22:28:50 -07:00
mapi Use the correct macro _WIN32 for Windows. 2012-09-05 22:14:32 -07:00
shared-glapi mapi: Add shared-glapi-test to .gitignore 2012-09-05 10:41:42 -07:00
vgapi automake: convert vgapi 2012-08-24 11:08:19 -07:00
Android.mk mapi: Fix Android build 2012-04-10 21:07:12 -07:00