[PATCH 8/9] glx: warning fixes

Adam Jackson ajax at redhat.com
Tue Oct 19 08:59:23 PDT 2010


render2.c: In function ‘__glXDisp_Map2d’:
render2.c:127: warning: ‘u1’ may be used uninitialized in this function
render2.c: In function ‘__glXDisp_Map1d’:
render2.c:90: warning: ‘u1’ may be used uninitialized in this function

Signed-off-by: Adam Jackson <ajax at redhat.com>
---
 glx/unpack.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/glx/unpack.h b/glx/unpack.h
index a4e6d7e..bd3f63a 100644
--- a/glx/unpack.h
+++ b/glx/unpack.h
@@ -47,7 +47,7 @@
 ** Fetch a double from potentially unaligned memory.
 */
 #ifdef __GLX_ALIGN64
-#define __GLX_MEM_COPY(dst,src,n)	if (src != NULL && dst != NULL) memcpy(dst,src,n)
+#define __GLX_MEM_COPY(dst,src,n)	memcpy(dst,src,n)
 #define __GLX_GET_DOUBLE(dst,src)	__GLX_MEM_COPY(&dst,src,8)
 #else
 #define __GLX_GET_DOUBLE(dst,src)	(dst) = *((GLdouble*)(src))
-- 
1.7.2.3



More information about the xorg-devel mailing list