From 93b57832ce513ef1521ac3d6cabc453054b375a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9=20van=20Geldorp?= Date: Wed, 25 Aug 2004 22:31:01 +0000 Subject: [PATCH] Avoid arithmetic overflow svn path=/trunk/; revision=10682 --- reactos/subsys/win32k/ntuser/msgqueue.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/subsys/win32k/ntuser/msgqueue.c b/reactos/subsys/win32k/ntuser/msgqueue.c index d9c3ba06b5f..616dce162d3 100644 --- a/reactos/subsys/win32k/ntuser/msgqueue.c +++ b/reactos/subsys/win32k/ntuser/msgqueue.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: msgqueue.c,v 1.103 2004/08/08 17:57:34 weiden Exp $ +/* $Id: msgqueue.c,v 1.104 2004/08/25 22:31:01 gvg Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -855,7 +855,7 @@ MsqSendMessage(PUSER_MESSAGE_QUEUE MessageQueue, ThreadQueue = PsGetWin32Thread()->MessageQueue; ASSERT(ThreadQueue != MessageQueue); - Timeout.QuadPart = uTimeout * -10000; + Timeout.QuadPart = (LONGLONG) uTimeout * (LONGLONG) -10000; /* FIXME - increase reference counter of sender's message queue here */