mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 01:07:52 +00:00
* python/py-value.c (valpy_call): Initialize ftype to avoid compiler
warning.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2011-10-07 Doug Evans <dje@google.com>
|
||||||
|
|
||||||
|
* python/py-value.c (valpy_call): Initialize ftype to avoid compiler
|
||||||
|
warning.
|
||||||
|
|
||||||
2011-10-07 Pedro Alves <pedro@codesourcery.com>
|
2011-10-07 Pedro Alves <pedro@codesourcery.com>
|
||||||
|
|
||||||
* linux-nat.h (ALL_LWPS): Remove the ptid parameter.
|
* linux-nat.h (ALL_LWPS): Remove the ptid parameter.
|
||||||
|
|||||||
@@ -515,7 +515,7 @@ valpy_call (PyObject *self, PyObject *args, PyObject *keywords)
|
|||||||
volatile struct gdb_exception except;
|
volatile struct gdb_exception except;
|
||||||
struct value *function = ((value_object *) self)->value;
|
struct value *function = ((value_object *) self)->value;
|
||||||
struct value **vargs = NULL;
|
struct value **vargs = NULL;
|
||||||
struct type *ftype;
|
struct type *ftype = NULL;
|
||||||
|
|
||||||
TRY_CATCH (except, RETURN_MASK_ALL)
|
TRY_CATCH (except, RETURN_MASK_ALL)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user