[PATCH vkd3d 2/5] vkd3d-shader: Watch for allocation failure from yyparse().

Zebediah Figura zfigura at codeweavers.com
Thu Mar 4 17:33:25 CST 2021


Signed-off-by: Zebediah Figura <zfigura at codeweavers.com>
---
 libs/vkd3d-shader/hlsl.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/libs/vkd3d-shader/hlsl.c b/libs/vkd3d-shader/hlsl.c
index 02fa4843..19bfc93a 100644
--- a/libs/vkd3d-shader/hlsl.c
+++ b/libs/vkd3d-shader/hlsl.c
@@ -1646,7 +1646,11 @@ int hlsl_compile_shader(const char *text, const struct vkd3d_shader_compile_info
     if (!hlsl_ctx_init(&ctx, message_context))
         return VKD3D_ERROR_OUT_OF_MEMORY;
 
-    hlsl_lexer_compile(&ctx, text);
+    if (hlsl_lexer_compile(&ctx, text) == 2)
+    {
+        hlsl_ctx_cleanup(&ctx);
+        return VKD3D_ERROR_OUT_OF_MEMORY;
+    }
 
     if (ctx.failed)
     {
-- 
2.30.1




More information about the wine-devel mailing list