[BEEP]: Convert to LONGLONG before doing the multiplication (or: use our macro Int32x32To64): avoids overflows.

svn path=/trunk/; revision=61848
This commit is contained in:
Hermès Bélusca-Maïto 2014-01-27 00:30:12 +00:00
parent c224fd594b
commit beed0625d8

View file

@ -339,7 +339,7 @@ BeepStartIo(IN PDEVICE_OBJECT DeviceObject,
{
/* Beep successful, queue a DPC to stop it */
Status = STATUS_SUCCESS;
DueTime.QuadPart = BeepParam->Duration * -10000;
DueTime.QuadPart = Int32x32To64(BeepParam->Duration, -10000);
InterlockedIncrement(&DeviceExtension->TimerActive);
KeSetTimer(&DeviceExtension->Timer, DueTime, &DeviceObject->Dpc);
}