From 43dcc20d0da8e94f7089212220cc9eecd087ce03 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 16 Mar 2021 12:59:16 +0200 Subject: Fix uninitialized value issue in file cache --- libbuild2/file-cache.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libbuild2') diff --git a/libbuild2/file-cache.hxx b/libbuild2/file-cache.hxx index 4486307..d3c0a30 100644 --- a/libbuild2/file-cache.hxx +++ b/libbuild2/file-cache.hxx @@ -105,7 +105,7 @@ namespace build2 { using path_type = build2::path; - bool temporary; + bool temporary = true; // The returned reference is valid and stable for the lifetime of the // entry handle. -- cgit v1.1