From e2afd5f2ba11e1d134cc5d9b22d7c959769ffba5 Mon Sep 17 00:00:00 2001 From: Eric Severance Date: Wed, 8 Jan 2025 09:03:15 -0800 Subject: [PATCH] Use a max of 5 for the phone queues --- .clusterfuzzlite/router_fuzzer.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.clusterfuzzlite/router_fuzzer.cpp b/.clusterfuzzlite/router_fuzzer.cpp index a7cd895a3..4dd6a0a37 100644 --- a/.clusterfuzzlite/router_fuzzer.cpp +++ b/.clusterfuzzlite/router_fuzzer.cpp @@ -77,6 +77,8 @@ int portduino_main(int argc, char **argv); // Renamed "main" function from Mesht // Start Meshtastic in a thread and wait till it has reached the ON state. int LLVMFuzzerInitialize(int *argc, char ***argv) { + settingsMap[maxtophone] = 5; + std::thread t([program = *argv[0]]() { char nodeIdStr[12]; strcpy(nodeIdStr, std::to_string(nodeId).c_str());