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:
authorCampbell Barton <ideasman42@gmail.com>2018-08-31 07:51:59 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-08-31 07:51:59 +0300
commit976f14fbcf78a87011ec09e76573cc62b44b6da6 (patch)
treebe28d6737f61dc2e6fb4db4b7cf67e1eefb59c38 /source/blender/python/intern/bpy_interface.c
parent98800aa4e0f7b4aa169e799e804b1ba658be6e69 (diff)
PyAPI: replace checks for invalid input w/ assert
Was returning -1 as a bool argument, in this case the caller needs to ensure non-null args.
Diffstat (limited to 'source/blender/python/intern/bpy_interface.c')
-rw-r--r--source/blender/python/intern/bpy_interface.c13
1 files changed, 3 insertions, 10 deletions
diff --git a/source/blender/python/intern/bpy_interface.c b/source/blender/python/intern/bpy_interface.c
index 66abc017fe1..9b685d5ba6e 100644
--- a/source/blender/python/intern/bpy_interface.c
+++ b/source/blender/python/intern/bpy_interface.c
@@ -625,13 +625,10 @@ bool BPY_execute_string_as_number(bContext *C, const char *expr, const bool verb
*/
bool BPY_execute_string_as_string(bContext *C, const char *expr, const bool verbose, char **r_value)
{
+ BLI_assert(r_value && expr);
PyGILState_STATE gilstate;
bool ok = true;
- if (!r_value || !expr) {
- return -1;
- }
-
if (expr[0] == '\0') {
*r_value = NULL;
return ok;
@@ -662,13 +659,10 @@ bool BPY_execute_string_as_string(bContext *C, const char *expr, const bool verb
*/
bool BPY_execute_string_as_intptr(bContext *C, const char *expr, const bool verbose, intptr_t *r_value)
{
+ BLI_assert(r_value && expr);
PyGILState_STATE gilstate;
bool ok = true;
- if (!r_value || !expr) {
- return -1;
- }
-
if (expr[0] == '\0') {
*r_value = 0;
return ok;
@@ -694,14 +688,13 @@ bool BPY_execute_string_as_intptr(bContext *C, const char *expr, const bool verb
bool BPY_execute_string_ex(bContext *C, const char *expr, bool use_eval)
{
+ BLI_assert(expr);
PyGILState_STATE gilstate;
PyObject *main_mod = NULL;
PyObject *py_dict, *retval;
bool ok = true;
Main *bmain_back; /* XXX, quick fix for release (Copy Settings crash), needs further investigation */
- if (!expr) return -1;
-
if (expr[0] == '\0') {
return ok;
}