diff options
author | Dan Carpenter <[email protected]> | 2021-04-22 12:00:54 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2021-04-22 13:17:29 +0200 |
commit | 3343f376d4bae98ec11fd104e0e211b275e754b8 (patch) | |
tree | a328b67d7604209cc343ae8dc0b9296e5cab8131 /scripts/gdb/linux/tasks.py | |
parent | f88359e1588b85cf0e8209ab7d6620085f3441d9 (diff) |
usb: gadget: prevent a ternary sign expansion bug
The problem is that "req->actual" is a u32, "req->status" is an int, and
iocb->ki_complete() takes a long. We would expect that a negative error
code in "req->status" would translate to a negative long value.
But what actually happens is that because "req->actual" is a u32, the
error codes is type promoted to a high positive value and then remains
a positive value when it is cast to long. (No sign expansion).
We can fix this by casting "req->status" to long.
Acked-by: Felipe Balbi <[email protected]>
Signed-off-by: Dan Carpenter <[email protected]>
Link: https://lore.kernel.org/r/YIE7RrBPLWc3XtMg@mwanda
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'scripts/gdb/linux/tasks.py')
0 files changed, 0 insertions, 0 deletions