mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-11-15 02:45:06 +00:00
Currently the null check on key is occurring after the strcasecmp on
the key, hence there is a potential null pointer dereference on key.
Fix this by checking if key is null first. Also replace the == 0
check on strcasecmp with just the ! operator.
Detected by CoverityScan, CID#1248787 ("Dereference before null check")
Fixes:
|
||
|---|---|---|
| .. | ||
| altera-comp.c | ||
| altera-exprt.h | ||
| altera-jtag.c | ||
| altera-jtag.h | ||
| altera-lpt.c | ||
| altera.c | ||
| Kconfig | ||
| Makefile | ||