diff options
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/python/py-value.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a1c6674..133f423 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2009-09-29 Tom Tromey <tromey@redhat.com> + + * python/py-value.c (valpy_string): NULL-terminate 'keywords'. + 2009-09-29 Ulrich Weigand <uweigand@de.ibm.com> * s390-tdep.c (s390_displaced_step_fixup): Use type ULONGEST diff --git a/gdb/python/py-value.c b/gdb/python/py-value.c index e2ae0ba..fc1b71a 100644 --- a/gdb/python/py-value.c +++ b/gdb/python/py-value.c @@ -239,7 +239,7 @@ valpy_string (PyObject *self, PyObject *args, PyObject *kw) const char *user_encoding = NULL; const char *la_encoding = NULL; struct type *char_type; - static char *keywords[] = { "encoding", "errors", "length" }; + static char *keywords[] = { "encoding", "errors", "length", NULL }; if (!PyArg_ParseTupleAndKeywords (args, kw, "|ssi", keywords, &user_encoding, &errors, &length)) |