mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-09 04:39:34 +00:00
refine 'assert' usage in vmmapi.c and main.c
cleanup 'assert' to avoid possible software vulnerabilities Tracked-On: #3252 Signed-off-by: Yonghua Huang <yonghua.huang@intel.com> Reviewed-by: Shuo A Liu <shuo.a.liu@intel.com>
This commit is contained in:
@@ -33,7 +33,6 @@
|
||||
#include <errno.h>
|
||||
#include <libgen.h>
|
||||
#include <unistd.h>
|
||||
#include <assert.h>
|
||||
#include <pthread.h>
|
||||
#include <sysexits.h>
|
||||
#include <stdbool.h>
|
||||
@@ -654,10 +653,15 @@ vm_loop(struct vmctx *ctx)
|
||||
int error;
|
||||
|
||||
ctx->ioreq_client = vm_create_ioreq_client(ctx);
|
||||
assert(ctx->ioreq_client > 0);
|
||||
if (ctx->ioreq_client <= 0) {
|
||||
pr_err("%s, failed to create IOREQ.\n", __func__);
|
||||
return;
|
||||
}
|
||||
|
||||
error = vm_run(ctx);
|
||||
assert(error == 0);
|
||||
if (vm_run(ctx) != 0) {
|
||||
pr_err("%s, failed to run VM.\n", __func__);
|
||||
return;
|
||||
}
|
||||
|
||||
while (1) {
|
||||
int vcpu_id;
|
||||
|
Reference in New Issue
Block a user