From 0a98d9e6cec7c611a3c56f97d4ddc0c546975c55 Mon Sep 17 00:00:00 2001 From: Jamey Sharp Date: Tue, 25 May 2010 10:30:58 -0700 Subject: [PATCH] xf86bigfont: Silence compiler warning by initializing pDesc. Access to pDesc was always guarded by (nCharInfos > 0), so the code wasn't actually buggy, but this makes it clear that it's correct. Signed-off-by: Jamey Sharp Reviewed-by: Alex Deucher --- Xext/xf86bigfont.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Xext/xf86bigfont.c b/Xext/xf86bigfont.c index 8c4a7eba9..8b3913daa 100644 --- a/Xext/xf86bigfont.c +++ b/Xext/xf86bigfont.c @@ -404,7 +404,7 @@ ProcXF86BigfontQueryFont( int nCharInfos; int shmid; #ifdef HAS_SHM - ShmDescPtr pDesc; + ShmDescPtr pDesc = NULL; #else #define pDesc 0 #endif @@ -449,8 +449,6 @@ ProcXF86BigfontQueryFont( #ifdef HAS_SHM if (!badSysCall) pDesc = (ShmDescPtr) FontGetPrivate(pFont, FontShmdescIndex); - else - pDesc = NULL; if (pDesc) { pCI = (xCharInfo *) pDesc->attach_addr; if (stuff_flags & XF86Bigfont_FLAGS_Shm)