From 70661b9c084fdb88ae1820cf4e8ffcdec28bb0b4 Mon Sep 17 00:00:00 2001
From: Dan Sinclair <dsinclair@chromium.org>
Date: Mon, 12 Nov 2018 13:56:52 -0500
Subject: [PATCH] Handle potentially uninitialized result

---
 SPIRV/GlslangToSpv.cpp | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/SPIRV/GlslangToSpv.cpp b/SPIRV/GlslangToSpv.cpp
index 632a21752..f0da85052 100755
--- a/SPIRV/GlslangToSpv.cpp
+++ b/SPIRV/GlslangToSpv.cpp
@@ -7302,6 +7302,10 @@ spv::Id TGlslangToSpvTraverser::createSpvConstant(const glslang::TIntermTyped& n
         } else if (auto* const_union_array = &sn->getConstArray()) {
             int nextConst = 0;
             result = createSpvConstantFromConstUnionArray(sn->getType(), *const_union_array, nextConst, true);
+        } else {
+            logger->missingFunctionality("Invalid initializer for spec onstant.");
+            exit(1);
+            return spv::NoResult;
         }
         builder.addName(result, sn->getName().c_str());
         return result;
-- 
GitLab