Re: [PATCH v2] plugin python: Adjust the handling after PyRun_String() failed

2019-01-15 Thread Steven Rostedt
On Thu, 27 Apr 2017 11:55:58 +0900 Taeung Song wrote: > Even though PyRun_String() failed, > just 0 will be returned but we need to return -1 > that means error status, so fix it. Ug, I just noticed this patch floating in the flood of my INBOX. I just applied it, and will be pushing it out soon

[PATCH v2] plugin python: Adjust the handling after PyRun_String() failed

2017-04-26 Thread Taeung Song
Even though PyRun_String() failed, just 0 will be returned but we need to return -1 that means error status, so fix it. Signed-off-by: Taeung Song --- plugin_python.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin_python.c b/plugin_python.c index 2997679..c283ed7 1006