* python/py-value.c (valpy_call): Initialize ftype to avoid compiler
warning.
This commit is contained in:
parent
5631e5967f
commit
749fd4eab6
2 changed files with 6 additions and 1 deletions
|
@ -515,7 +515,7 @@ valpy_call (PyObject *self, PyObject *args, PyObject *keywords)
|
|||
volatile struct gdb_exception except;
|
||||
struct value *function = ((value_object *) self)->value;
|
||||
struct value **vargs = NULL;
|
||||
struct type *ftype;
|
||||
struct type *ftype = NULL;
|
||||
|
||||
TRY_CATCH (except, RETURN_MASK_ALL)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue