1
0
Fork 0

drbd: receive_bitmap: Missing free_page() on error path

Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
hifive-unleashed-5.1
Andreas Gruenbacher 2010-12-10 22:18:27 +01:00 committed by Philipp Reisner
parent de1f8e4a0a
commit 78fcbdae22
1 changed files with 1 additions and 1 deletions

View File

@ -3499,7 +3499,7 @@ static int receive_bitmap(struct drbd_conf *mdev, enum drbd_packets cmd, unsigne
goto out;
if (data_size <= (sizeof(*p) - sizeof(p->head))) {
dev_err(DEV, "ReportCBitmap packet too small (l:%u)\n", data_size);
return false;
goto out;
}
ret = decode_bitmap_c(mdev, p, &c);
} else {