Skip to content

Commit

Permalink
mei: samples: fix a signedness bug in amt_host_if_call()
Browse files Browse the repository at this point in the history
"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>
  • Loading branch information
Dan Carpenter authored and Greg Kroah-Hartman committed Oct 2, 2018
1 parent 03b2cbb commit 1856478
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/mei/mei-amt-version.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 1856478

Please sign in to comment.