+2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
+
+ * solib-darwin.c (struct lm_info_darwin): Initialize field.
+ (darwin_current_sos): Allocate lm_info_darwin with new, remove
+ cleanup.
+ (darwin_free_so): Free lm_info_darwin with delete.
+
2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
* solib-svr4.h (struct lm_info_svr4): Initialize fields.
struct lm_info_darwin : public lm_info_base
{
/* The target location of lm. */
- CORE_ADDR lm_addr;
+ CORE_ADDR lm_addr = 0;
};
/* Lookup the value for a specific symbol. */
newobj = XCNEW (struct so_list);
old_chain = make_cleanup (xfree, newobj);
- lm_info_darwin *li = XCNEW (lm_info_darwin);
+ lm_info_darwin *li = new lm_info_darwin;
newobj->lm_info = li;
strncpy (newobj->so_name, file_path, SO_NAME_MAX_PATH_SIZE - 1);
static void
darwin_free_so (struct so_list *so)
{
- xfree (so->lm_info);
+ lm_info_darwin *li = (lm_info_darwin *) so->lm_info;
+
+ delete li;
}
/* The section table is built from bfd sections using bfd VMAs.