aboutsummaryrefslogtreecommitdiff
path: root/util/cbfstool
diff options
context:
space:
mode:
Diffstat (limited to 'util/cbfstool')
-rw-r--r--util/cbfstool/cbfs_sections.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/util/cbfstool/cbfs_sections.c b/util/cbfstool/cbfs_sections.c
index 285725760b..088534adc9 100644
--- a/util/cbfstool/cbfs_sections.c
+++ b/util/cbfstool/cbfs_sections.c
@@ -14,6 +14,7 @@
*/
#include "cbfs_sections.h"
+#include "common.h"
#include <assert.h>
#include <stdlib.h>
@@ -65,6 +66,10 @@ bool fmd_process_flag_cbfs(const struct flashmap_descriptor *node)
return false;
list_node = (struct descriptor_node *)malloc(sizeof(*list_node));
+ if (!list_node) {
+ ERROR("Cannot allocate CBFS flag node!\n");
+ return false;
+ }
list_node->val = node;
list_node->next = NULL;