diff options
Diffstat (limited to 'nx-X11/programs/Xserver/Xext/xtest.c')
-rw-r--r-- | nx-X11/programs/Xserver/Xext/xtest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nx-X11/programs/Xserver/Xext/xtest.c b/nx-X11/programs/Xserver/Xext/xtest.c index d78efd39b..a392599ea 100644 --- a/nx-X11/programs/Xserver/Xext/xtest.c +++ b/nx-X11/programs/Xserver/Xext/xtest.c @@ -111,7 +111,7 @@ static int ProcXTestGetVersion(client) register ClientPtr client; { - xXTestGetVersionReply rep; + xXTestGetVersionReply rep = {0}; REQUEST_SIZE_MATCH(xXTestGetVersionReq); rep.type = X_Reply; @@ -132,7 +132,7 @@ ProcXTestCompareCursor(client) register ClientPtr client; { REQUEST(xXTestCompareCursorReq); - xXTestCompareCursorReply rep; + xXTestCompareCursorReply rep = {0}; WindowPtr pWin; CursorPtr pCursor; |