diff options
Diffstat (limited to 'gdb/solib-ia64-hpux.c')
-rw-r--r-- | gdb/solib-ia64-hpux.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/solib-ia64-hpux.c b/gdb/solib-ia64-hpux.c index d91b2a1..b53caa8 100644 --- a/gdb/solib-ia64-hpux.c +++ b/gdb/solib-ia64-hpux.c @@ -86,8 +86,8 @@ new_so_list (char *so_name, struct load_module_desc module_desc) { struct so_list *new_so; - new_so = (struct so_list *) XZALLOC (struct so_list); - new_so->lm_info = (struct lm_info *) XZALLOC (struct lm_info); + new_so = (struct so_list *) XCNEW (struct so_list); + new_so->lm_info = (struct lm_info *) XCNEW (struct lm_info); new_so->lm_info->module_desc = module_desc; strncpy (new_so->so_name, so_name, SO_NAME_MAX_PATH_SIZE - 1); @@ -677,7 +677,7 @@ ia64_hpux_get_solib_linkage_addr (CORE_ADDR faddr) static struct target_so_ops * ia64_hpux_target_so_ops (void) { - struct target_so_ops *ops = XZALLOC (struct target_so_ops); + struct target_so_ops *ops = XCNEW (struct target_so_ops); ops->relocate_section_addresses = ia64_hpux_relocate_section_addresses; ops->free_so = ia64_hpux_free_so; |