quartz: Return E_OUTOFMEMORY of the StdMemAllocator is unable to allocate memory.

This commit is contained in:
Aric Stewart 2010-09-17 13:59:28 -05:00 committed by Alexandre Julliard
parent ffe9cc87c0
commit ac6db331ac

View file

@ -802,6 +802,9 @@ static HRESULT StdMemAllocator_Alloc(IMemAllocator * iface)
/* allocate memory */
This->pMemory = VirtualAlloc(NULL, (This->base.props.cbBuffer + This->base.props.cbPrefix) * This->base.props.cBuffers, MEM_COMMIT, PAGE_READWRITE);
if (!This->pMemory)
return E_OUTOFMEMORY;
for (i = This->base.props.cBuffers - 1; i >= 0; i--)
{
/* pbBuffer does not start at the base address, it starts at base + cbPrefix */