aboutsummaryrefslogtreecommitdiff
path: root/tools/perf/scripts/python
diff options
context:
space:
mode:
authorJiri Slaby <[email protected]>2017-03-15 12:00:23 +0100
committerGreg Kroah-Hartman <[email protected]>2017-03-17 14:17:11 +0900
commit22077b091a4720d4336bd806e9c93b2a81fcc38a (patch)
tree40670e2f9203809c0995a878e53757a0ab67e2e5 /tools/perf/scripts/python
parentfab8a02b73eb2a42c589f943c377143f04b2bb73 (diff)
tty: serial_core, remove state checks in uart_poll*
Coverity complains about uart_state checks in polling functions. And it is indeed correct. We do something like this: struct uart_state *state = drv->state + line; if (!state) return; Adding 'line' to drv->state would move the potential NULL pointer to something near NULL and the check is useless. Even if we checked pure drv->state, nothing guarantees it is not freed and NULLed after the check. So if the only user of this interface (kgdboc) needs to assure something, this is neither the correct thing, nor place to do so. Signed-off-by: Jiri Slaby <[email protected]> Cc: [email protected] Cc: Jason Wessel <[email protected]> Cc: [email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python')
0 files changed, 0 insertions, 0 deletions