commit | d37d47c94127668d8725451b05880c67323cb9c6 | [log] [tgz] |
---|---|---|
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | Thu Sep 12 19:19:30 2019 +0200 |
committer | Tom Rini <trini@konsulko.com> | Fri Oct 11 19:05:14 2019 -0400 |
tree | a0e5aefcaead15b33f68ff16a08a324828cb57fe | |
parent | c1a159c04b6d6a4e3008908e4bc4063fdf105b4e [diff] |
fs: fat: get_contents() always returns -1 for errors If out of memory, return -1 and not -ENOMEM from get_contents(). Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
diff --git a/fs/fat/fat.c b/fs/fat/fat.c index 2a5300d..9e1b842 100644 --- a/fs/fat/fat.c +++ b/fs/fat/fat.c
@@ -364,7 +364,7 @@ tmp_buffer = malloc_cache_aligned(actsize); if (!tmp_buffer) { debug("Error: allocating buffer\n"); - return -ENOMEM; + return -1; } if (get_cluster(mydata, curclust, tmp_buffer, actsize) != 0) {