Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 277369
b: refs/heads/master
c: 466e287
h: refs/heads/master
i:
  277367: edbb253
v: v3
  • Loading branch information
Namhyung Kim authored and Arnaldo Carvalho de Melo committed Jan 3, 2012
1 parent 6a3d4e9 commit 580fa57
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 057a174a064f68bac042d618ce3c6ea3ccd9a8aa
refs/heads/master: 466e2876bcb9ddc9b92502c46689679bee7d72a0
13 changes: 1 addition & 12 deletions trunk/tools/perf/builtin-script.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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)
Expand Down

0 comments on commit 580fa57

Please sign in to comment.