defensive if

This commit is contained in:
Stefan Bratanov 2022-12-18 11:13:26 +02:00
parent d06df97716
commit b6c0beaf8b
1 changed files with 6 additions and 3 deletions

View File

@ -8,11 +8,14 @@ static const char *TRUSTED_SETUP_NOT_LOADED = "Trusted Setup is not loaded.";
KZGSettings *settings; KZGSettings *settings;
void reset_trusted_setup() void reset_trusted_setup()
{
if (settings)
{ {
free_trusted_setup(settings); free_trusted_setup(settings);
free(settings); free(settings);
settings = NULL; settings = NULL;
} }
}
void throw_exception(JNIEnv *env, const char *message) void throw_exception(JNIEnv *env, const char *message)
{ {