Commit 51c25426 authored by Rico Schüller's avatar Rico Schüller Committed by Alexandre Julliard

d3d10: Add data and size check to parse_dxbc().

parent 53ea5de6
......@@ -141,6 +141,12 @@ HRESULT parse_dxbc(const char *data, SIZE_T data_size,
unsigned int i;
DWORD tag;
if (!data)
{
WARN("No data supplied.\n");
return E_FAIL;
}
read_dword(&ptr, &tag);
TRACE("tag: %s.\n", debugstr_an((const char *)&tag, 4));
......@@ -158,6 +164,12 @@ HRESULT parse_dxbc(const char *data, SIZE_T data_size,
read_dword(&ptr, &total_size);
TRACE("total size: %#x\n", total_size);
if (data_size != total_size)
{
WARN("Wrong size supplied.\n");
return E_FAIL;
}
read_dword(&ptr, &chunk_count);
TRACE("chunk count: %#x\n", chunk_count);
......
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