diff options
Diffstat (limited to 'gdb/python/py-arch.c')
-rw-r--r-- | gdb/python/py-arch.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/python/py-arch.c b/gdb/python/py-arch.c index 7eb6eea..146a642 100644 --- a/gdb/python/py-arch.c +++ b/gdb/python/py-arch.c @@ -200,7 +200,8 @@ archpy_disassemble (PyObject *self, PyObject *args, PyObject *kw) Py_DECREF (result_list); ui_file_delete (memfile); - return gdbpy_convert_exception (except); + gdbpy_convert_exception (except); + return NULL; } as = ui_file_xstrdup (memfile, NULL); |