Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clang static analysis reports this problem route.c:425:4: warning: Use of memory after it is freed trace_mctp_key_acquire(key); ^~~~~~~~~~~~~~~~~~~~~~~~~~~ When mctp_key_add() fails, key is freed but then is later used in trace_mctp_key_acquire(). Add an else statement to use the key only when mctp_key_add() is successful. Fixes: 4f9e1ba ("mctp: Add tracepoints for tag/key handling") Signed-off-by: Tom Rix <[email protected]> Signed-off-by: David S. Miller <[email protected]>
- Loading branch information