From 15c20e1960323ac945add35a430912ac9ea829a4 Mon Sep 17 00:00:00 2001 From: FuzzTest Team Date: Tue, 14 Jul 2026 08:53:20 -0700 Subject: [PATCH] No public description PiperOrigin-RevId: 947712079 --- centipede/centipede_callbacks.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/centipede/centipede_callbacks.h b/centipede/centipede_callbacks.h index 38d6bc35c..6676fffca 100644 --- a/centipede/centipede_callbacks.h +++ b/centipede/centipede_callbacks.h @@ -186,7 +186,11 @@ class CentipedeCallbacks { // Variables required for ExecuteCentipedeSancovBinaryWithShmem. // They are computed in CTOR, to avoid extra computation in the hot loop. - std::string temp_dir_ = TemporaryLocalDirPath(); + std::string temp_dir_ = [] { + std::string p = TemporaryLocalDirPath(); + (void)std::filesystem::create_directory(p); + return p; + }(); std::string temp_input_file_path_ = std::filesystem::path(temp_dir_).append("temp_input_file"); const std::string execute_log_prefix_ =