Skip to content
Snippets Groups Projects
Commit 830f7c1e authored by Józef Kucia's avatar Józef Kucia Committed by Alexandre Julliard
Browse files

libs/vkd3d: Propagate error code in vkd3d_fence_worker_stop().

parent 0e86a6b3
No related branches found
No related tags found
No related merge requests found
......@@ -309,7 +309,7 @@ HRESULT vkd3d_fence_worker_stop(struct vkd3d_fence_worker *worker,
if (FAILED(hr = device->join_thread(worker->u.handle)))
{
ERR("Failed to join fence worker thread, hr %#x.\n", hr);
return E_FAIL;
return hr;
}
}
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment