aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hw/fsp/fsp-nvram.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/fsp/fsp-nvram.c b/hw/fsp/fsp-nvram.c
index 257cdd6..2d518f3 100644
--- a/hw/fsp/fsp-nvram.c
+++ b/hw/fsp/fsp-nvram.c
@@ -271,6 +271,8 @@ static bool fsp_nvram_get_size(uint32_t *out_size)
int rc, size;
msg = fsp_mkmsg(FSP_CMD_GET_VNVRAM_SIZE, 0);
+ assert(msg);
+
rc = fsp_sync_msg(msg, false);
size = msg->resp ? msg->resp->data.words[0] : 0;
fsp_freemsg(msg);