0
5

Shutdown library properly on error.
Alle Prüfungen waren erfolgreich
The build was successful.

Dieser Commit ist enthalten in:
Rafal Kupiec 2018-09-04 08:49:38 +02:00
Ursprung dc0a55c8c0
Commit 758ace0d1a
Signiert von: belliash
GPG-Schlüssel-ID: 4E829243E0CFE6B4

Datei anzeigen

@ -1882,8 +1882,8 @@ PH7_PRIVATE sxi32 PH7_VmMemoryError(
/* Consume the error message */
VmCallErrorHandler(&(*pVm), &sWorker);
}
/* Release the VM gracefully and abort script execution */
PH7_VmRelease(pVm);
/* Shutdown library and abort script execution */
ph7_lib_shutdown();
exit(255);
}
/*
@ -1964,8 +1964,8 @@ PH7_PRIVATE sxi32 PH7_VmGenericError(
rc = VmCallErrorHandler(&(*pVm), &sWorker);
}
if(iErr == PH7_CTX_ERR) {
/* Release the VM gracefully and abort script execution */
PH7_VmRelease(pVm);
/* Shutdown library and abort script execution */
ph7_lib_shutdown();
exit(255);
}
return rc;