mesa/src
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
..
egl Don't cast the return value of malloc/realloc 2012-09-05 22:28:50 -07:00
gallium Don't cast the return value of malloc/realloc 2012-09-05 22:28:50 -07:00
gbm dri: Rework planar image interface 2012-08-31 19:51:02 +02:00
getopt getopt: Make code more portable. 2011-01-12 16:54:21 +00:00
glsl glsl: s/class/struct/ for ast_type_qualifier 2012-08-29 12:08:46 -06:00
glx Don't cast the return value of malloc/realloc 2012-09-05 22:28:50 -07:00
gtest build: Fix gtest out-of-tree build 2012-08-14 10:54:39 -07:00
mapi Don't cast the return value of malloc/realloc 2012-09-05 22:28:50 -07:00
mesa Don't cast the return value of malloc/realloc 2012-09-05 22:28:50 -07:00
.gitignore automake: Convert src/Makefile to automake. 2012-06-11 09:28:00 -07:00
Makefile.am automake: Convert src/Makefile to automake. 2012-06-11 09:28:00 -07:00
SConscript Remove libGLU 2012-08-31 10:58:15 -07:00