From: Juergen Gross Date: Thu, 9 Apr 2020 14:12:39 +0000 (+0200) Subject: mini-os: fix double free() in xenbus X-Git-Tag: xen-RELEASE-4.14.0~6 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=c7f57245bff5daa133b4c8473cbf038b753496d9;p=mini-os.git mini-os: fix double free() in xenbus Commit 973ad0c4de1b48 ("Save/Restore Support: Add suspend/restore support for xenbus") introduced a double free of some memory and leaked another memory allocation. Fix those. Coverity-ID: 1433640 Fixes: 973ad0c4de1b48 ("Save/Restore Support: Add suspend/restore support for xenbus") Signed-off-by: Juergen Gross Acked-by: Wei Liu Reviewed-by: Samuel Thibault --- diff --git a/xenbus/xenbus.c b/xenbus/xenbus.c index d72dc3a..b12cef7 100644 --- a/xenbus/xenbus.c +++ b/xenbus/xenbus.c @@ -413,9 +413,11 @@ void resume_xenbus(int canceled) rep = xenbus_msg_reply(XS_WATCH, XBT_NIL, req, ARRAY_SIZE(req)); msg = errmsg(rep); - if (msg) + if (msg) { xprintk("error on XS_WATCH: %s\n", msg); - free(rep); + free(msg); + } else + free(rep); } }