Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-03-28 07:05:41 +0300
committerCampbell Barton <campbell@blender.org>2022-03-28 07:06:47 +0300
commite8fd2d846926a9ee1a934e68e7dd69ced10080f5 (patch)
tree9dbd763f636f7f9663ad1d1156ebd9b0861115f0 /source
parent6f305577b346030249bdb762f887136ff02624e3 (diff)
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.
Diffstat (limited to 'source')
-rw-r--r--source/blender/python/intern/bpy_traceback.c5
1 files changed, 4 insertions, 1 deletions
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);