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
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/functions/intern/multi_function_procedure_executor.cc')
-rw-r--r--source/blender/functions/intern/multi_function_procedure_executor.cc16
1 files changed, 14 insertions, 2 deletions
diff --git a/source/blender/functions/intern/multi_function_procedure_executor.cc b/source/blender/functions/intern/multi_function_procedure_executor.cc
index b97282accdd..6d2d121bafd 100644
--- a/source/blender/functions/intern/multi_function_procedure_executor.cc
+++ b/source/blender/functions/intern/multi_function_procedure_executor.cc
@@ -1022,7 +1022,13 @@ static void execute_call_instruction(const MFCallInstruction &instruction,
}
}
- fn.call(IndexRange(1), params, context);
+ try {
+ fn.call(IndexRange(1), params, context);
+ }
+ catch (...) {
+ /* Multi-functions must not throw exceptions. */
+ BLI_assert_unreachable();
+ }
}
else {
MFParamsBuilder params(fn, &mask);
@@ -1038,7 +1044,13 @@ static void execute_call_instruction(const MFCallInstruction &instruction,
}
}
- fn.call(mask, params, context);
+ try {
+ fn.call(mask, params, context);
+ }
+ catch (...) {
+ /* Multi-functions must not throw exceptions. */
+ BLI_assert_unreachable();
+ }
}
}