mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2025-09-14 14:59:13 +00:00
Don't crash if state has not been set.
This commit is contained in:
@@ -404,7 +404,7 @@ void ChatLLM::saveState()
|
||||
|
||||
void ChatLLM::restoreState()
|
||||
{
|
||||
if (!isModelLoaded())
|
||||
if (!isModelLoaded() || m_state.isEmpty())
|
||||
return;
|
||||
|
||||
m_llmodel->restoreState(static_cast<const uint8_t*>(reinterpret_cast<void*>(m_state.data())));
|
||||
|
Reference in New Issue
Block a user