summaryrefslogtreecommitdiffstats
path: root/samples
diff options
context:
space:
mode:
authorDan Carpenter <dan.carpenter@oracle.com>2018-10-01 19:44:41 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-11-24 08:19:50 +0100
commit743ccf759e8ec9126ce691eccfc266c356c32158 (patch)
tree197a2b6d588abffca989c1bf54b1b214dc8b9412 /samples
parentcc7d996a4428ca44652e5518e865c42ac7dfca0d (diff)
downloadlinux-stable-743ccf759e8ec9126ce691eccfc266c356c32158.tar.gz
linux-stable-743ccf759e8ec9126ce691eccfc266c356c32158.tar.bz2
linux-stable-743ccf759e8ec9126ce691eccfc266c356c32158.zip
mei: samples: fix a signedness bug in amt_host_if_call()
[ Upstream commit 185647813cac080453cb73a2e034a8821049f2a7 ] "out_buf_sz" needs to be signed for the error handling to work. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'samples')
-rw-r--r--samples/mei/mei-amt-version.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/mei/mei-amt-version.c b/samples/mei/mei-amt-version.c
index bb9988914a56..32234481ad7d 100644
--- a/samples/mei/mei-amt-version.c
+++ b/samples/mei/mei-amt-version.c
@@ -370,7 +370,7 @@ static uint32_t amt_host_if_call(struct amt_host_if *acmd,
unsigned int expected_sz)
{
uint32_t in_buf_sz;
- uint32_t out_buf_sz;
+ ssize_t out_buf_sz;
ssize_t written;
uint32_t status;
struct amt_host_if_resp_header *msg_hdr;