tools lib traceevent: Get rid of die() in create_arg_item()
Signed-off-by: Namhyung Kim <namhyung@kernel.org> Reviewed-by: Steven Rostedt <rostedt@goodmis.org> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Ingo Molnar <mingo@kernel.org> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Namhyung Kim <namhyung.kim@lge.com> Cc: Steven Rostedt <rostedt@goodmis.org> Link: http://lkml.kernel.org/r/1386567251-22751-9-git-send-email-namhyung@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
234520d3fb
commit
2036fcd1c7
1 changed files with 5 additions and 2 deletions
|
@ -362,8 +362,11 @@ create_arg_item(struct event_format *event, const char *token,
|
||||||
arg->value.type =
|
arg->value.type =
|
||||||
type == EVENT_DQUOTE ? FILTER_STRING : FILTER_CHAR;
|
type == EVENT_DQUOTE ? FILTER_STRING : FILTER_CHAR;
|
||||||
arg->value.str = strdup(token);
|
arg->value.str = strdup(token);
|
||||||
if (!arg->value.str)
|
if (!arg->value.str) {
|
||||||
die("malloc string");
|
free_arg(arg);
|
||||||
|
show_error(error_str, "failed to allocate string filter arg");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case EVENT_ITEM:
|
case EVENT_ITEM:
|
||||||
/* if it is a number, then convert it */
|
/* if it is a number, then convert it */
|
||||||
|
|
Loading…
Add table
Reference in a new issue