mirror of
https://github.com/status-im/c-kzg-4844.git
synced 2025-02-19 21:38:06 +00:00
Check that malloc'd settings isn't null
This commit is contained in:
parent
82ee54793c
commit
26c57c4444
@ -44,7 +44,12 @@ JNIEXPORT void JNICALL Java_ethereum_ckzg4844_CKZG4844JNI_loadTrustedSetup__Ljav
|
|||||||
throw_exception(env, "Trusted Setup is already loaded. Free it before loading a new one.");
|
throw_exception(env, "Trusted Setup is already loaded. Free it before loading a new one.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
settings = malloc(sizeof(KZGSettings));
|
settings = malloc(sizeof(KZGSettings));
|
||||||
|
if (settings == NULL)
|
||||||
|
{
|
||||||
|
throw_exception(env, "Failed to allocate memory for settings.");
|
||||||
|
}
|
||||||
|
|
||||||
const char *file_native = (*env)->GetStringUTFChars(env, file, 0);
|
const char *file_native = (*env)->GetStringUTFChars(env, file, 0);
|
||||||
|
|
||||||
@ -78,7 +83,12 @@ JNIEXPORT void JNICALL Java_ethereum_ckzg4844_CKZG4844JNI_loadTrustedSetup___3BJ
|
|||||||
throw_exception(env, "Trusted Setup is already loaded. Free it before loading a new one.");
|
throw_exception(env, "Trusted Setup is already loaded. Free it before loading a new one.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
settings = malloc(sizeof(KZGSettings));
|
settings = malloc(sizeof(KZGSettings));
|
||||||
|
if (settings == NULL)
|
||||||
|
{
|
||||||
|
throw_exception(env, "Failed to allocate memory for settings.");
|
||||||
|
}
|
||||||
|
|
||||||
jbyte *g1_native = (*env)->GetByteArrayElements(env, g1, NULL);
|
jbyte *g1_native = (*env)->GetByteArrayElements(env, g1, NULL);
|
||||||
jbyte *g2_native = (*env)->GetByteArrayElements(env, g2, NULL);
|
jbyte *g2_native = (*env)->GetByteArrayElements(env, g2, NULL);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user