* [PATCH v2] android/client: Fix crash in tab completion
@ 2013-10-30 9:31 Jerzy Kasenberg
2013-10-30 10:07 ` Johan Hedberg
0 siblings, 1 reply; 2+ messages in thread
From: Jerzy Kasenberg @ 2013-10-30 9:31 UTC (permalink / raw)
To: linux-bluetooth; +Cc: Jerzy Kasenberg
When user pressed tab on third or later argument when
first two did not make sense tool crashed.
Now method is checked for NULL before accessing help field.
---
First version was doing to much (crash was gone but so was
completion when completion function was not provided, just help
string)
android/client/tabcompletion.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/android/client/tabcompletion.c b/android/client/tabcompletion.c
index 69af609..cc1a5d3 100644
--- a/android/client/tabcompletion.c
+++ b/android/client/tabcompletion.c
@@ -332,7 +332,7 @@ static void param_completion(int argc, const split_arg_t *arg,
if (args.func != NULL) {
args.typed = argv[argc - 1];
args.help = method_help;
- args.user_help = (void *) method->help;
+ args.user_help = method ? (void *) method->help : NULL;
tab_completion(&args);
}
--
1.7.9.5
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-10-30 10:07 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-30 9:31 [PATCH v2] android/client: Fix crash in tab completion Jerzy Kasenberg
2013-10-30 10:07 ` Johan Hedberg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox