mesa/src/gallium/winsys
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
..
i915 configure: replace pkg-config calls with $(PKG_CONFIG) in the makefiles. 2011-10-04 11:19:48 -07:00
nouveau/drm nvc0: add initial support for nve4+ (Kepler) chipsets 2012-04-15 00:08:51 +02:00
radeon/drm Don't cast the return value of malloc/realloc 2012-09-05 22:28:50 -07:00
svga/drm scons: Add support for Intel Compiler. 2012-08-01 21:28:47 -07:00
sw scons: Fix SCons build infrastructure for FreeBSD. 2012-05-24 18:49:40 -07:00
Makefile vl: Get softpipe building again. 2010-05-08 20:11:29 -04:00