From 82f30d7e2717d06557cfcdf4c36d5b4f69212bcc Mon Sep 17 00:00:00 2001 From: Mark Williams Date: Wed, 26 Jun 2019 09:23:05 -0700 Subject: [PATCH] Fix uninitialized field in IndexData Summary: I was trying to use a dev mode build to debug an unrelated issue, and found this. Reviewed By: binliu19, alexeyt Differential Revision: D15999640 fbshipit-source-id: 6abe9a456938d3c0b3a015bae312d2a687febcfd --- hphp/hhbbc/index.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hphp/hhbbc/index.cpp b/hphp/hhbbc/index.cpp index 7caccc8b1dc..80edc4dd42a 100644 --- a/hphp/hhbbc/index.cpp +++ b/hphp/hhbbc/index.cpp @@ -1056,7 +1056,7 @@ struct Index::IndexData { CompactVector > closureUseVars; - bool useClassDependencies; + bool useClassDependencies{}; DepMap dependencyMap; /* -- 2.11.4.GIT