diff options
author | Doug Evans <dje@google.com> | 2013-02-28 20:01:10 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2013-02-28 20:01:10 +0000 |
commit | 62d7fb51718b98d4322ebd15df5907d4a0984100 (patch) | |
tree | 17a02d6653b56a824d7fa49e8662fcd785a786eb /gdb/python/python.c | |
parent | c4a9e8b4e322868fd065dcbe70232cc25eedb6c2 (diff) | |
download | gdb-62d7fb51718b98d4322ebd15df5907d4a0984100.zip gdb-62d7fb51718b98d4322ebd15df5907d4a0984100.tar.gz gdb-62d7fb51718b98d4322ebd15df5907d4a0984100.tar.bz2 |
* python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
* python/python.c (gdbpy_find_pc_line): Ditto.
Diffstat (limited to 'gdb/python/python.c')
-rw-r--r-- | gdb/python/python.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |