[SACDRV]
authorJérôme Gardou <jerome.gardou@reactos.org>
Mon, 30 Dec 2013 22:00:49 +0000 (22:00 +0000)
committerJérôme Gardou <jerome.gardou@reactos.org>
Mon, 30 Dec 2013 22:00:49 +0000 (22:00 +0000)
 - Fix unsigned vs 0 comparison

svn path=/trunk/; revision=61464

reactos/drivers/sac/driver/concmd.c

index 2c10244..c3cbe68 100644 (file)
@@ -94,7 +94,7 @@ GetTListInfo(IN PSAC_SYSTEM_INFORMATION SacInfo,
 
     /* Make sure it's at least big enough to hold the static structure */
     BufferLength = InputSize - sizeof(SAC_SYSTEM_INFORMATION);
-    if ((INT)InputSize - sizeof(SAC_SYSTEM_INFORMATION) < 0)
+    if (InputSize < sizeof(SAC_SYSTEM_INFORMATION))
     {
         SAC_DBG(SAC_DBG_ENTRY_EXIT, "Exiting, no memory (2).\n");
         return STATUS_NO_MEMORY;