diff options
Diffstat (limited to 'gdb/python/python.c')
-rw-r--r-- | gdb/python/python.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/python/python.c b/gdb/python/python.c index 3fb5fbc..8f8030c 100644 --- a/gdb/python/python.c +++ b/gdb/python/python.c @@ -772,7 +772,8 @@ execute_gdb_command (PyObject *self, PyObject *args, PyObject *kw) } if (to_string) - return PyUnicode_FromString (to_string_res.c_str ()); + return PyUnicode_Decode (to_string_res.c_str (), to_string_res.size (), + host_charset (), nullptr); Py_RETURN_NONE; } |