[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1443578250-9830-1-git-send-email-os@iscas.ac.cn>
Date: Wed, 30 Sep 2015 09:57:30 +0800
From: Heloise NH <os@...as.ac.cn>
To: a.p.zijlstra@...llo.nl, paulus@...ba.org, mingo@...hat.com,
acme@...stprotocols.net
Cc: os@...as.ac.cn, linux-kernel@...r.kernel.org
Subject: [PATCH 1/1] trace-event-python.c used malloc without checking ptr if NULL
Signed-off-by: Heloise NH <os@...as.ac.cn>
---
tools/perf/util/scripting-engines/trace-event-python.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/perf/util/scripting-engines/trace-event-python.c b/tools/perf/util/scripting-engines/trace-event-python.c
index cff58ae..14d8e73 100644
--- a/tools/perf/util/scripting-engines/trace-event-python.c
+++ b/tools/perf/util/scripting-engines/trace-event-python.c
@@ -475,7 +475,7 @@ static int python_start_script(const char *script, int argc, const char **argv)
FILE *fp;
command_line = malloc((argc + 1) * sizeof(const char *));
- if (command_line == NULL){
+ if (command_line == NULL) {
err = -1;
goto error;
}
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists