From 580fa5768cee7a44219fcb6fe33305ad5b685946 Mon Sep 17 00:00:00 2001 From: Namhyung Kim Date: Wed, 28 Dec 2011 00:35:51 +0900 Subject: [PATCH] --- yaml --- r: 277369 b: refs/heads/master c: 466e2876bcb9ddc9b92502c46689679bee7d72a0 h: refs/heads/master i: 277367: edbb253758e4ee8a0df0eba9f297ce047fc91a3a v: v3 --- [refs] | 2 +- trunk/tools/perf/builtin-script.c | 13 +------------ 2 files changed, 2 insertions(+), 13 deletions(-) diff --git a/[refs] b/[refs] index 9adfa4dc81bf..837d56a2668b 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 057a174a064f68bac042d618ce3c6ea3ccd9a8aa +refs/heads/master: 466e2876bcb9ddc9b92502c46689679bee7d72a0 diff --git a/trunk/tools/perf/builtin-script.c b/trunk/tools/perf/builtin-script.c index 3d4c0c7b576e..fd1909afcfd6 100644 --- a/trunk/tools/perf/builtin-script.c +++ b/trunk/tools/perf/builtin-script.c @@ -536,12 +536,6 @@ static struct script_spec *script_spec__new(const char *spec, return s; } -static void script_spec__delete(struct script_spec *s) -{ - free(s->spec); - free(s); -} - static void script_spec__add(struct script_spec *s) { list_add_tail(&s->node, &script_specs); @@ -567,16 +561,11 @@ static struct script_spec *script_spec__findnew(const char *spec, s = script_spec__new(spec, ops); if (!s) - goto out_delete_spec; + return NULL; script_spec__add(s); return s; - -out_delete_spec: - script_spec__delete(s); - - return NULL; } int script_spec_register(const char *spec, struct scripting_ops *ops)