diff options
Diffstat (limited to 'gdb/python')
-rw-r--r-- | gdb/python/py-breakpoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/python/py-breakpoint.c b/gdb/python/py-breakpoint.c index 6156eb6..d57c2fa 100644 --- a/gdb/python/py-breakpoint.c +++ b/gdb/python/py-breakpoint.c @@ -673,7 +673,7 @@ bppy_init (PyObject *self, PyObject *args, PyObject *kwargs) TRY { gdb::unique_xmalloc_ptr<char> - copy_holder (xstrdup (skip_spaces_const (spec))); + copy_holder (xstrdup (skip_spaces (spec))); char *copy = copy_holder.get (); switch (type) |