Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6ca847a9 authored by Dave Airlie's avatar Dave Airlie
Browse files

Merge branch 'vmwgfx-fixes-5.3' of git://people.freedesktop.org/~thomash/linux into drm-fixes



One single memory leak fix.

Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
From: Thomas Hellstrom "VMware" <thomas@shipmail.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20190808094615.31040-1-thomas@shipmail.org
parents f536579c 6b7c3b86
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -389,8 +389,10 @@ static int vmw_recv_msg(struct rpc_channel *channel, void **msg,
		break;
	}

	if (retries == RETRIES)
	if (retries == RETRIES) {
		kfree(reply);
		return -EINVAL;
	}

	*msg_len = reply_len;
	*msg     = reply;