diff options
author | marha <marha@users.sourceforge.net> | 2010-04-27 12:17:43 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2010-04-27 12:17:43 +0000 |
commit | 929c7e1e824590c2f8bd47135f96c98a34027dd5 (patch) | |
tree | 6276192c5c4b18aaab2eccbc03b8d6e1b859ab1b /xorg-server/Xext/panoramiX.c | |
parent | e026745845d87ab4cd8b2a96b665d24b025644e1 (diff) | |
download | vcxsrv-929c7e1e824590c2f8bd47135f96c98a34027dd5.tar.gz vcxsrv-929c7e1e824590c2f8bd47135f96c98a34027dd5.tar.bz2 vcxsrv-929c7e1e824590c2f8bd47135f96c98a34027dd5.zip |
git update 27/4/2010
Diffstat (limited to 'xorg-server/Xext/panoramiX.c')
-rw-r--r-- | xorg-server/Xext/panoramiX.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xorg-server/Xext/panoramiX.c b/xorg-server/Xext/panoramiX.c index 96eb8f9e1..d5965c2d0 100644 --- a/xorg-server/Xext/panoramiX.c +++ b/xorg-server/Xext/panoramiX.c @@ -476,7 +476,8 @@ void PanoramiXExtensionInit(int argc, char *argv[]) panoramiXdataPtr = (PanoramiXData *) xcalloc(PanoramiXNumScreens, sizeof(PanoramiXData)); - BREAK_IF(!panoramiXdataPtr); + if (!panoramiXdataPtr) + break; if (!dixRequestPrivate(PanoramiXGCKey, sizeof(PanoramiXGCRec))) { noPanoramiXExtension = TRUE; |