From c5942a5c2fe7677a77b88254ee874bc09a5aa725 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Mon, 26 Dec 2022 20:35:20 +0200 Subject: [PATCH] Make sure the extra_data of GnuCompiler is initialized --- source/gnucompiler.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/source/gnucompiler.cpp b/source/gnucompiler.cpp index beff9f9..4ee09ed 100644 --- a/source/gnucompiler.cpp +++ b/source/gnucompiler.cpp @@ -104,6 +104,7 @@ string GnuCompiler::create_build_signature(const BuildInfo &binfo) const void GnuCompiler::do_prepare(ToolData &tool) const { + tool.extra_data = 0U; prepare_syspath(tool); prepare_version(tool); } -- 2.43.0