Commit 63d6dce0 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

d3dcompiler: Fix a buffer size computation.

parent 7bdfb745
...@@ -1151,7 +1151,7 @@ preproc_directive: PRE_LINE STRING ...@@ -1151,7 +1151,7 @@ preproc_directive: PRE_LINE STRING
hlsl_ctx.line_no = $1; hlsl_ctx.line_no = $1;
if (strcmp($2, hlsl_ctx.source_file)) if (strcmp($2, hlsl_ctx.source_file))
new_array = d3dcompiler_realloc(hlsl_ctx.source_files, new_array = d3dcompiler_realloc(hlsl_ctx.source_files,
sizeof(*hlsl_ctx.source_files) * hlsl_ctx.source_files_count + 1); sizeof(*hlsl_ctx.source_files) * (hlsl_ctx.source_files_count + 1));
if (new_array) if (new_array)
{ {
......
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