mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 17:12:58 +00:00
- Fix allocation check
- Found by Amine Khaldi svn path=/trunk/; revision=42608
This commit is contained in:
parent
fad9ff3860
commit
20a819d000
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ PerformSampleRateConversion(
|
||||||
}
|
}
|
||||||
|
|
||||||
ResultOut = ExAllocatePool(NonPagedPool, NewSamples * NumChannels * BytesPerSample);
|
ResultOut = ExAllocatePool(NonPagedPool, NewSamples * NumChannels * BytesPerSample);
|
||||||
if (!FloatOut)
|
if (!ResultOut)
|
||||||
{
|
{
|
||||||
ExFreePool(FloatIn);
|
ExFreePool(FloatIn);
|
||||||
ExFreePool(FloatOut);
|
ExFreePool(FloatOut);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue