1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-03-22 06:50:52 +03:00

bcache.c add missing {

This commit is contained in:
David Teigland 2018-06-26 12:15:07 -05:00
parent 69907e0780
commit 49147cbaa7

View File

@ -560,7 +560,7 @@ static bool _init_free_list(struct bcache *cache, unsigned count, unsigned pgsiz
return false;
cache->raw_blocks = dm_malloc(count * sizeof(*cache->raw_blocks));
if (!cache->raw_blocks)
if (!cache->raw_blocks) {
free(data);
return false;
}