From: Colin Ian King Date: Thu, 22 Feb 2018 17:22:59 +0000 (+0000) Subject: xen/pvcalls: fix null pointer dereference on map->sock X-Git-Tag: v4.14.45~339 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3ecb681ccf6b1853e7acd912cb7d13e6f97fb525;p=platform%2Fkernel%2Flinux-rpi.git xen/pvcalls: fix null pointer dereference on map->sock [ Upstream commit 68d2059be660944152ba667e43c3b4ec225974bc ] Currently if map is null then a potential null pointer deference occurs when calling sock_release on map->sock. I believe the actual intention was to call sock_release on sock instead. Fix this. Fixes: 5db4d286a8ef ("xen/pvcalls: implement connect command") Signed-off-by: Colin Ian King Reviewed-by: Juergen Gross Signed-off-by: Juergen Gross Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/xen/pvcalls-back.c b/drivers/xen/pvcalls-back.c index b209cd4..169293c 100644 --- a/drivers/xen/pvcalls-back.c +++ b/drivers/xen/pvcalls-back.c @@ -424,7 +424,7 @@ static int pvcalls_back_connect(struct xenbus_device *dev, sock); if (!map) { ret = -EFAULT; - sock_release(map->sock); + sock_release(sock); } out: