Fix check for NULL after malloc

This commit is contained in:
Adrian Dombeck
2017-01-17 16:20:12 +01:00
parent a962489841
commit c7000be86a
+1 -1
View File
@@ -186,7 +186,7 @@ int load_trusted_file (PAL_HANDLE file, sgx_arch_mac_t ** stubptr,
(tf->size % TRUSTED_STUB_SIZE ? 1 : 0);
sgx_arch_mac_t * stubs = malloc(sizeof(sgx_arch_mac_t) * nstubs);
if (!tf)
if (!stubs)
return -PAL_ERROR_NOMEM;
sgx_arch_mac_t * s = stubs;