From c23f16c28a933dc59e48e73ac5f8f782bbfb680a Mon Sep 17 00:00:00 2001 From: Mike Rapoport Date: Tue, 15 May 2018 23:42:22 +0300 Subject: [PATCH] lazy-pages: use xfree() instead of free() Although they are the same, xfree() looks more consistent with other code Signed-off-by: Mike Rapoport Signed-off-by: Andrei Vagin --- criu/uffd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/criu/uffd.c b/criu/uffd.c index f803f2aa2..e60c782ee 100644 --- a/criu/uffd.c +++ b/criu/uffd.c @@ -150,7 +150,7 @@ static void lpi_fini(struct lazy_pages_info *lpi) { if (!lpi) return; - free(lpi->buf); + xfree(lpi->buf); free_iovs(lpi); if (lpi->lpfd.fd > 0) close(lpi->lpfd.fd); @@ -158,7 +158,7 @@ static void lpi_fini(struct lazy_pages_info *lpi) lpi->parent->num_children--; if (!lpi->parent && !lpi->num_children && lpi->pr.close) lpi->pr.close(&lpi->pr); - free(lpi); + xfree(lpi); } static int prepare_sock_addr(struct sockaddr_un *saddr)