[Win32k]
authorJames Tabor <james.tabor@reactos.org>
Sun, 20 Mar 2011 00:21:45 +0000 (00:21 +0000)
committerJames Tabor <james.tabor@reactos.org>
Sun, 20 Mar 2011 00:21:45 +0000 (00:21 +0000)
- Fix sign for BeginDeferWindowPos(-1) test, see bug 6025.

svn path=/trunk/; revision=51093

reactos/subsystems/win32/win32k/ntuser/simplecall.c

index 1e74111..87d8c07 100644 (file)
@@ -162,13 +162,15 @@ NtUserCallOneParam(
          {
              PSMWP psmwp;
              HDWP hDwp = NULL;
          {
              PSMWP psmwp;
              HDWP hDwp = NULL;
-             if (Param < 0)
+             INT count = (INT)Param;
+
+             if (count < 0)
              {
                 EngSetLastError(ERROR_INVALID_PARAMETER);
                 RETURN(0);
              }
              /* Windows allows zero count, in which case it allocates context for 8 moves */
              {
                 EngSetLastError(ERROR_INVALID_PARAMETER);
                 RETURN(0);
              }
              /* Windows allows zero count, in which case it allocates context for 8 moves */
-             if (Param == 0) Param = 8;
+             if (count == 0) count = 8;
 
              psmwp = (PSMWP) UserCreateObject( gHandleTable,
                                                NULL,
 
              psmwp = (PSMWP) UserCreateObject( gHandleTable,
                                                NULL,
@@ -176,13 +178,13 @@ NtUserCallOneParam(
                                                otSMWP,
                                                sizeof(SMWP));
              if (!psmwp) RETURN(0);
                                                otSMWP,
                                                sizeof(SMWP));
              if (!psmwp) RETURN(0);
-             psmwp->acvr = ExAllocatePoolWithTag(PagedPool, Param * sizeof(CVR), USERTAG_SWP);
+             psmwp->acvr = ExAllocatePoolWithTag(PagedPool, count * sizeof(CVR), USERTAG_SWP);
              if (!psmwp->acvr)
              {
                 UserDeleteObject(hDwp, otSMWP);
                 RETURN(0);
              }
              if (!psmwp->acvr)
              {
                 UserDeleteObject(hDwp, otSMWP);
                 RETURN(0);
              }
-             RtlZeroMemory(psmwp->acvr, Param * sizeof(CVR));
+             RtlZeroMemory(psmwp->acvr, count * sizeof(CVR));
              psmwp->bHandle = TRUE;
              psmwp->ccvr = 0;          // actualCount
              psmwp->ccvrAlloc = Param; // suggestedCount             
              psmwp->bHandle = TRUE;
              psmwp->ccvr = 0;          // actualCount
              psmwp->ccvrAlloc = Param; // suggestedCount