diff options
author | Lars Weber | 2022-01-13 14:28:45 +0100 |
---|---|---|
committer | Tom Rini | 2022-01-29 07:46:46 -0500 |
commit | 1e69db57e64249f7f7a5a282a3a2f1b053be3f6f (patch) | |
tree | 6376c36f19409294563fc843bf4d5bbd8959418d /fs/squashfs/sqfs.c | |
parent | 9053374648f47311a55819e45a52e69a184b6182 (diff) |
squashfs: show an error message if the inode_table can't be, allocated
Signed-off-by: Lars Weber <weber@weber-software.com>
Diffstat (limited to 'fs/squashfs/sqfs.c')
-rw-r--r-- | fs/squashfs/sqfs.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/squashfs/sqfs.c b/fs/squashfs/sqfs.c index e2d91c654cd..5d9c52af80b 100644 --- a/fs/squashfs/sqfs.c +++ b/fs/squashfs/sqfs.c @@ -728,6 +728,8 @@ static int sqfs_read_inode_table(unsigned char **inode_table) *inode_table = malloc(metablks_count * SQFS_METADATA_BLOCK_SIZE); if (!*inode_table) { ret = -ENOMEM; + printf("Error: failed to allocate squashfs inode_table of size %i, increasing CONFIG_SYS_MALLOC_LEN could help\n", + metablks_count * SQFS_METADATA_BLOCK_SIZE); goto free_itb; } |