diff options
Diffstat (limited to 'gdb/python/py-value.c')
-rw-r--r-- | gdb/python/py-value.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/python/py-value.c b/gdb/python/py-value.c index b5a0ef8..cbbb936 100644 --- a/gdb/python/py-value.c +++ b/gdb/python/py-value.c @@ -925,7 +925,8 @@ valpy_call (PyObject *self, PyObject *args, PyObject *keywords) scoped_value_mark free_values; struct value *return_value; - return_value = call_function_by_hand (function, args_count, vargs); + return_value = call_function_by_hand (function, NULL, + args_count, vargs); result = value_to_value_object (return_value); } CATCH (except, RETURN_MASK_ALL) |