From 8e68240f897587ac224832cf9b605d7a8152c673 Mon Sep 17 00:00:00 2001 From: FuzzTest Team Date: Mon, 13 Jul 2026 08:43:10 -0700 Subject: [PATCH] No public description PiperOrigin-RevId: 947063087 --- 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_ =