Commit a7e599db authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

wined3d: Handle NULL ptrs (Coverity).

parent 000e1e0c
...@@ -187,11 +187,13 @@ static HRESULT WINAPI IWineD3DVolumeImpl_GetContainer(IWineD3DVolume *iface, REF ...@@ -187,11 +187,13 @@ static HRESULT WINAPI IWineD3DVolumeImpl_GetContainer(IWineD3DVolume *iface, REF
if (!ppContainer) { if (!ppContainer) {
ERR("Called without a valid ppContainer.\n"); ERR("Called without a valid ppContainer.\n");
return E_FAIL;
} }
/* Although surfaces can be standalone, volumes can't */ /* Although surfaces can be standalone, volumes can't */
if (!This->container) { if (!This->container) {
ERR("Volume without an container. Should not happen.\n"); ERR("Volume without an container. Should not happen.\n");
return E_FAIL;
} }
TRACE("Relaying to QueryInterface\n"); TRACE("Relaying to QueryInterface\n");
......
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