From aa2c824258acf73f18a8690637eafe1c1f77531a Mon Sep 17 00:00:00 2001 From: Adam Treat Date: Mon, 19 Jun 2023 18:26:04 -0400 Subject: [PATCH] Initialize these. --- gpt4all-chat/chatllm.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gpt4all-chat/chatllm.cpp b/gpt4all-chat/chatllm.cpp index 613ced0a..cbe8c1bf 100644 --- a/gpt4all-chat/chatllm.cpp +++ b/gpt4all-chat/chatllm.cpp @@ -92,6 +92,8 @@ ChatLLM::ChatLLM(Chat *parent, bool isServer) , m_promptResponseTokens(0) , m_promptTokens(0) , m_isRecalc(false) + , m_shouldBeLoaded(true) + , m_stopGenerating(false) , m_chat(parent) , m_timer(nullptr) , m_isServer(isServer)