Co-authored-by: Peter Jones <pjo...@redhat.com>
Signed-off-by: Peter Jones <pjo...@redhat.com>
Signed-off-by: Robbie Harwood <rharw...@redhat.com>
---
 grub-core/net/http.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/grub-core/net/http.c b/grub-core/net/http.c
index df690acf67..406777b01b 100644
--- a/grub-core/net/http.c
+++ b/grub-core/net/http.c
@@ -295,7 +295,9 @@ http_receive (grub_net_tcp_socket_t sock __attribute__ 
((unused)),
          nb2 = grub_netbuff_alloc (data->chunk_rem);
          if (!nb2)
            return grub_errno;
-         grub_netbuff_put (nb2, data->chunk_rem);
+         err = grub_netbuff_put (nb2, data->chunk_rem);
+         if (err)
+           return grub_errno;
          grub_memcpy (nb2->data, nb->data, data->chunk_rem);
          if (file->device->net->packs.count >= 20)
            {
-- 
2.40.0


_______________________________________________
Grub-devel mailing list
Grub-devel@gnu.org
https://lists.gnu.org/mailman/listinfo/grub-devel

Reply via email to