diff options
Diffstat (limited to 'gdb/windows-nat.c')
-rw-r--r-- | gdb/windows-nat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c index 62db43f..ce78a6d 100644 --- a/gdb/windows-nat.c +++ b/gdb/windows-nat.c @@ -1540,7 +1540,7 @@ dll_code_sections_add (const char *dll_name, int base_addr, struct target_ops *t char *name; if (dll_name == NULL || target == NULL) return 0; - name = strdup (dll_name); + name = xstrdup (dll_name); dll_bfd = bfd_openr (name, "pei-i386"); if (dll_bfd == NULL) return 0; |