Commit 2bb7aa72 authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

wined3d: Don't crash in CreateAdditionalSwapChain() if the context array wasn't allocated yet.

parent e2399a96
...@@ -1677,7 +1677,7 @@ error: ...@@ -1677,7 +1677,7 @@ error:
HeapFree(GetProcessHeap(), 0, object->backBuffer); HeapFree(GetProcessHeap(), 0, object->backBuffer);
object->backBuffer = NULL; object->backBuffer = NULL;
} }
if(object->context[0]) if(object->context && object->context[0])
DestroyContext(This, object->context[0]); DestroyContext(This, object->context[0]);
if(object->frontBuffer) { if(object->frontBuffer) {
IWineD3DSurface_GetParent(object->frontBuffer, &bufferParent); IWineD3DSurface_GetParent(object->frontBuffer, &bufferParent);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment