From e8fd2d846926a9ee1a934e68e7dd69ced10080f5 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 28 Mar 2022 15:05:41 +1100 Subject: Cleanup: early exit when there is no exception Reduces noise in D9752, no functional change as PyErr_NormalizeException doesn't do anything when there is no exception set. --- source/blender/python/intern/bpy_traceback.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'source') diff --git a/source/blender/python/intern/bpy_traceback.c b/source/blender/python/intern/bpy_traceback.c index 13af254c286..fb89925400e 100644 --- a/source/blender/python/intern/bpy_traceback.c +++ b/source/blender/python/intern/bpy_traceback.c @@ -124,8 +124,11 @@ void python_script_error_jump(const char *filepath, int *lineno, int *offset) *offset = 0; PyErr_Fetch(&exception, &value, (PyObject **)&tb); + if (exception == NULL) { + return; + } - if (exception && PyErr_GivenExceptionMatches(exception, PyExc_SyntaxError)) { + if (PyErr_GivenExceptionMatches(exception, PyExc_SyntaxError)) { /* no trace-back available when `SyntaxError`. * python has no API's to this. reference #parse_syntax_error() from pythonrun.c */ PyErr_NormalizeException(&exception, &value, (PyObject **)&tb); -- cgit v1.2.3