|
@@ -575,6 +575,7 @@ handle_bb:
|
|
bh = bclean(handle, sb, block);
|
|
bh = bclean(handle, sb, block);
|
|
if (IS_ERR(bh)) {
|
|
if (IS_ERR(bh)) {
|
|
err = PTR_ERR(bh);
|
|
err = PTR_ERR(bh);
|
|
|
|
+ bh = NULL;
|
|
goto out;
|
|
goto out;
|
|
}
|
|
}
|
|
overhead = ext4_group_overhead_blocks(sb, group);
|
|
overhead = ext4_group_overhead_blocks(sb, group);
|
|
@@ -603,6 +604,7 @@ handle_ib:
|
|
bh = bclean(handle, sb, block);
|
|
bh = bclean(handle, sb, block);
|
|
if (IS_ERR(bh)) {
|
|
if (IS_ERR(bh)) {
|
|
err = PTR_ERR(bh);
|
|
err = PTR_ERR(bh);
|
|
|
|
+ bh = NULL;
|
|
goto out;
|
|
goto out;
|
|
}
|
|
}
|
|
|
|
|