mirror of
https://github.com/xcat2/xNBA.git
synced 2024-11-26 11:19:17 +00:00
Allow load() and exec() methods to be NULL.
This commit is contained in:
parent
8a490146bf
commit
7dc50167bb
@ -116,6 +116,11 @@ struct image * find_image ( const char *name ) {
|
||||
static int image_load_type ( struct image *image, struct image_type *type ) {
|
||||
int rc;
|
||||
|
||||
/* Check image is actually loadable */
|
||||
if ( ! type->load )
|
||||
return -ENOEXEC;
|
||||
|
||||
/* Try the image loader */
|
||||
if ( ( rc = type->load ( image ) ) != 0 ) {
|
||||
DBGC ( image, "IMAGE %p could not load as %s: %s\n",
|
||||
image, type->name, strerror ( rc ) );
|
||||
@ -180,6 +185,10 @@ int image_exec ( struct image *image ) {
|
||||
|
||||
assert ( image->type != NULL );
|
||||
|
||||
/* Check that image is actually executable */
|
||||
if ( ! image->type->exec )
|
||||
return -ENOEXEC;
|
||||
|
||||
/* Try executing the image */
|
||||
if ( ( rc = image->type->exec ( image ) ) != 0 ) {
|
||||
DBGC ( image, "IMAGE %p could not execute: %s\n",
|
||||
|
Loading…
Reference in New Issue
Block a user