Mark unloaded extensions as not fully loaded (fixes #1574).

This commit is contained in:
Nick Hastings 2021-10-23 23:36:47 -04:00 committed by Your Name
parent daa1a4df14
commit ff00e3d036

View File

@ -240,6 +240,8 @@ void CLocalExtension::Unload()
m_pLib->CloseLibrary();
m_pLib = NULL;
}
m_bFullyLoaded = false;
}
bool CRemoteExtension::Reload(char *error, size_t maxlength)