aboutsummaryrefslogtreecommitdiff
path: root/xorg-server/Xext/shape.c
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2010-04-27 12:17:43 +0000
committermarha <marha@users.sourceforge.net>2010-04-27 12:17:43 +0000
commit929c7e1e824590c2f8bd47135f96c98a34027dd5 (patch)
tree6276192c5c4b18aaab2eccbc03b8d6e1b859ab1b /xorg-server/Xext/shape.c
parente026745845d87ab4cd8b2a96b665d24b025644e1 (diff)
downloadvcxsrv-929c7e1e824590c2f8bd47135f96c98a34027dd5.tar.gz
vcxsrv-929c7e1e824590c2f8bd47135f96c98a34027dd5.tar.bz2
vcxsrv-929c7e1e824590c2f8bd47135f96c98a34027dd5.zip
git update 27/4/2010
Diffstat (limited to 'xorg-server/Xext/shape.c')
-rw-r--r--xorg-server/Xext/shape.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/xorg-server/Xext/shape.c b/xorg-server/Xext/shape.c
index cb4126b44..58b5c23c0 100644
--- a/xorg-server/Xext/shape.c
+++ b/xorg-server/Xext/shape.c
@@ -365,7 +365,7 @@ ProcPanoramiXShapeRectangles(
FOR_NSCREENS(j) {
stuff->dest = win->info[j].id;
result = ProcShapeRectangles (client);
- BREAK_IF(result != Success);
+ if (result != Success) break;
}
return (result);
}
@@ -474,7 +474,7 @@ ProcPanoramiXShapeMask(
if(pmap)
stuff->src = pmap->info[j].id;
result = ProcShapeMask (client);
- BREAK_IF(result != Success);
+ if (result != Success) break;
}
return (result);
}
@@ -600,7 +600,7 @@ ProcPanoramiXShapeCombine(
stuff->dest = win->info[j].id;
stuff->src = win2->info[j].id;
result = ProcShapeCombine (client);
- BREAK_IF(result != Success);
+ if (result != Success) break;
}
return (result);
}