Commit 8f8e86ea authored by Dylan Smith's avatar Dylan Smith Committed by Alexandre Julliard

d3dx9: Removed a duplicate NULL check.

parent 2556173f
......@@ -3444,7 +3444,7 @@ HRESULT WINAPI D3DXFrameDestroy(LPD3DXFRAME frame, LPD3DXALLOCATEHIERARCHY alloc
current_frame = frame->pFrameSibling;
frame->pFrameSibling = current_frame->pFrameSibling;
current_frame->pFrameSibling = NULL;
} else if (frame) {
} else {
current_frame = frame;
last = TRUE;
}
......
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