diff options
author | Tom Tromey <tromey@redhat.com> | 2012-11-12 19:24:14 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2012-11-12 19:24:14 +0000 |
commit | 31594462cabd1148f94aea7c2064ba0564568316 (patch) | |
tree | a9fa078911a317a3409cd1402a6bc5c85f470a05 /gdb/python | |
parent | 18a9fc1261b8a654fe6db7eea7e60b0c59296d96 (diff) | |
download | gdb-31594462cabd1148f94aea7c2064ba0564568316.zip gdb-31594462cabd1148f94aea7c2064ba0564568316.tar.gz gdb-31594462cabd1148f94aea7c2064ba0564568316.tar.bz2 |
* python/python.c (start_type_printers): Initialize 'result_obj'.
Diffstat (limited to 'gdb/python')
-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 359d238..5f6df60 100644 --- a/gdb/python/python.c +++ b/gdb/python/python.c @@ -1189,7 +1189,7 @@ void * start_type_printers (void) { struct cleanup *cleanups; - PyObject *type_module, *func, *result_obj; + PyObject *type_module, *func, *result_obj = NULL; cleanups = ensure_python_env (get_current_arch (), current_language); |