From: Doug Evans Date: Thu, 28 Feb 2013 20:01:10 +0000 (+0000) Subject: * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint. X-Git-Tag: sid-snapshot-20130301~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=62d7fb51718b98d4322ebd15df5907d4a0984100;p=platform%2Fupstream%2Fbinutils.git * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint. * python/python.c (gdbpy_find_pc_line): Ditto. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c793593..d92a703 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2013-02-28 Doug Evans + + * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint. + * python/python.c (gdbpy_find_pc_line): Ditto. + 2013-02-28 Tom Tromey * contrib/excheck.py: New file. diff --git a/gdb/python/py-finishbreakpoint.c b/gdb/python/py-finishbreakpoint.c index d3d6bfd..6e095b5 100644 --- a/gdb/python/py-finishbreakpoint.c +++ b/gdb/python/py-finishbreakpoint.c @@ -160,7 +160,8 @@ bpfinishpy_init (PyObject *self, PyObject *args, PyObject *kwargs) int type = bp_breakpoint; PyObject *frame_obj = NULL; int thread; - struct frame_info *frame, *prev_frame = NULL; + struct frame_info *frame = NULL; /* init for gcc -Wall */ + struct frame_info *prev_frame = NULL; struct frame_id frame_id; PyObject *internal = NULL; int internal_bp = 0; diff --git a/gdb/python/python.c b/gdb/python/python.c index 405eb5b..24be906 100644 --- a/gdb/python/python.c +++ b/gdb/python/python.c @@ -740,7 +740,7 @@ gdbpy_find_pc_line (PyObject *self, PyObject *args) { gdb_py_ulongest pc_llu; volatile struct gdb_exception except; - PyObject *result; + PyObject *result = NULL; /* init for gcc -Wall */ if (!PyArg_ParseTuple (args, GDB_PY_LLU_ARG, &pc_llu)) return NULL;