From: Heinrich Schuchardt Date: Thu, 4 Jun 2020 17:28:22 +0000 (+0200) Subject: sandbox: handling out of memory X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=c7e49ddc613534f2eb4286ae100fbc90938f160f;p=u-boot.git sandbox: handling out of memory assert() only works in debug mode. So checking a successful memory allocation should not use assert(). Signed-off-by: Heinrich Schuchardt Reviewed-by: Simon Glass --- diff --git a/arch/sandbox/cpu/state.c b/arch/sandbox/cpu/state.c index 1f794123b3..34b6fff7e7 100644 --- a/arch/sandbox/cpu/state.c +++ b/arch/sandbox/cpu/state.c @@ -378,7 +378,10 @@ int state_init(void) state->ram_size = CONFIG_SYS_SDRAM_SIZE; state->ram_buf = os_malloc(state->ram_size); - assert(state->ram_buf); + if (!state->ram_buf) { + printf("Out of memory\n"); + os_exit(1); + } state_reset_for_test(state); /*