From ac6db331ac4d23ded42ed8fda31a518f865b3ce3 Mon Sep 17 00:00:00 2001 From: Aric Stewart Date: Fri, 17 Sep 2010 13:59:28 -0500 Subject: [PATCH] quartz: Return E_OUTOFMEMORY of the StdMemAllocator is unable to allocate memory. --- dlls/quartz/memallocator.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dlls/quartz/memallocator.c b/dlls/quartz/memallocator.c index a1c4473238f..c0be482adf8 100644 --- a/dlls/quartz/memallocator.c +++ b/dlls/quartz/memallocator.c @@ -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 */