mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-04 04:04:19 +00:00
params.c: fix Smack complaint about parse_args
In commit 9fb48c744
: "params: add 3rd arg to option handler callback
signature", the if-guard added to the pr_debug was overzealous; no
callers pass NULL, and existing code above and below the guard assumes
as much. Change the if-guard to match, and silence the Smack
complaint.
CC: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Jim Cromie <jim.cromie@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a85990b3b1
commit
1ef9eaf2bf
@ -190,7 +190,7 @@ int parse_args(const char *doing,
|
||||
/* Chew leading spaces */
|
||||
args = skip_spaces(args);
|
||||
|
||||
if (args && *args)
|
||||
if (*args)
|
||||
pr_debug("doing %s, parsing ARGS: '%s'\n", doing, args);
|
||||
|
||||
while (*args) {
|
||||
|
Loading…
Reference in New Issue
Block a user