aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2017-10-22 06:39:58 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2017-10-22 06:39:58 -0400
commitb8d389e8f30eaed04dcd56bb9007e49df7d37c2e (patch)
tree07f9ec6de6f6ba5d282e02fc478dfe85ceb57088
parentMerge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net (diff)
parentobjtool: Fix memory leak in decode_instructions() (diff)
downloadlinux-dev-b8d389e8f30eaed04dcd56bb9007e49df7d37c2e.tar.xz
linux-dev-b8d389e8f30eaed04dcd56bb9007e49df7d37c2e.zip
Merge branch 'core-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull objtool fix from Thomas Gleixner: "Plug a memory leak in the instruction decoder" * 'core-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: objtool: Fix memory leak in decode_instructions()
-rw-r--r--tools/objtool/check.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/tools/objtool/check.c b/tools/objtool/check.c
index a0c518ecf085..c0e26ad1fa7e 100644
--- a/tools/objtool/check.c
+++ b/tools/objtool/check.c
@@ -267,12 +267,13 @@ static int decode_instructions(struct objtool_file *file)
&insn->immediate,
&insn->stack_op);
if (ret)
- return ret;
+ goto err;
if (!insn->type || insn->type > INSN_LAST) {
WARN_FUNC("invalid instruction type %d",
insn->sec, insn->offset, insn->type);
- return -1;
+ ret = -1;
+ goto err;
}
hash_add(file->insn_hash, &insn->hash, insn->offset);
@@ -296,6 +297,10 @@ static int decode_instructions(struct objtool_file *file)
}
return 0;
+
+err:
+ free(insn);
+ return ret;
}
/*