]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
PR31162, Memory Leak in ldwrite.c
authorAlan Modra <amodra@gmail.com>
Fri, 15 Dec 2023 09:49:46 +0000 (20:19 +1030)
committerAlan Modra <amodra@gmail.com>
Mon, 18 Dec 2023 12:15:50 +0000 (22:45 +1030)
This isn't a particularly worrying memory leak, but fix it anyway.

PR 31162
* ldwrite.c (build_link_order): Use bfd_alloc rather than xmalloc.
Add %E to error messages.

ld/ldwrite.c

index 0e9d7d0a3dfe1f1ccf17963087ae7a436b94186d..9375644cbd176faf3e8c11665d2b9ece18997d4c 100644 (file)
@@ -57,11 +57,14 @@ build_link_order (lang_statement_union_type *statement)
 
        link_order = bfd_new_link_order (link_info.output_bfd, output_section);
        if (link_order == NULL)
-         einfo (_("%F%P: bfd_new_link_order failed\n"));
+         einfo (_("%F%P: bfd_new_link_order failed: %E\n"));
 
        link_order->type = bfd_data_link_order;
        link_order->offset = statement->data_statement.output_offset;
-       link_order->u.data.contents = (bfd_byte *) xmalloc (QUAD_SIZE);
+       link_order->u.data.contents = bfd_alloc (link_info.output_bfd,
+                                                QUAD_SIZE);
+       if (link_order->u.data.contents == NULL)
+         einfo (_("%F%P: bfd_new_link_order failed: %E\n"));
 
        value = statement->data_statement.value;
 
@@ -167,13 +170,15 @@ build_link_order (lang_statement_union_type *statement)
 
        link_order = bfd_new_link_order (link_info.output_bfd, output_section);
        if (link_order == NULL)
-         einfo (_("%F%P: bfd_new_link_order failed\n"));
+         einfo (_("%F%P: bfd_new_link_order failed: %E\n"));
 
        link_order->offset = rs->output_offset;
        link_order->size = bfd_get_reloc_size (rs->howto);
 
        link_order->u.reloc.p = (struct bfd_link_order_reloc *)
-         xmalloc (sizeof (struct bfd_link_order_reloc));
+         bfd_alloc (link_info.output_bfd, sizeof (struct bfd_link_order_reloc));
+       if (link_order->u.reloc.p == NULL)
+         einfo (_("%F%P: bfd_new_link_order failed: %E\n"));
 
        link_order->u.reloc.p->reloc = rs->reloc;
        link_order->u.reloc.p->addend = rs->addend_value;
@@ -219,7 +224,7 @@ build_link_order (lang_statement_union_type *statement)
            link_order = bfd_new_link_order (link_info.output_bfd,
                                             output_section);
            if (link_order == NULL)
-             einfo (_("%F%P: bfd_new_link_order failed\n"));
+             einfo (_("%F%P: bfd_new_link_order failed: %E\n"));
 
            if ((i->flags & SEC_NEVER_LOAD) != 0
                && (i->flags & SEC_DEBUGGING) == 0)
@@ -260,7 +265,7 @@ build_link_order (lang_statement_union_type *statement)
        link_order = bfd_new_link_order (link_info.output_bfd,
                                         output_section);
        if (link_order == NULL)
-         einfo (_("%F%P: bfd_new_link_order failed\n"));
+         einfo (_("%F%P: bfd_new_link_order failed: %E\n"));
        link_order->type = bfd_data_link_order;
        link_order->size = statement->padding_statement.size;
        link_order->offset = statement->padding_statement.output_offset;