mirror of
https://git.proxmox.com/git/grub2
synced 2025-07-19 05:06:41 +00:00
convert to, not from, CPU byte order in DNS receive function
This commit is contained in:
parent
a8c473288d
commit
16a7e723ea
@ -262,7 +262,7 @@ recv_hook (grub_net_udp_socket_t sock __attribute__ ((unused)),
|
||||
grub_netbuff_free (nb);
|
||||
return GRUB_ERR_NONE;
|
||||
}
|
||||
for (i = 0; i < grub_cpu_to_be16 (head->qdcount); i++)
|
||||
for (i = 0; i < grub_be_to_cpu16 (head->qdcount); i++)
|
||||
{
|
||||
if (ptr >= nb->tail)
|
||||
{
|
||||
@ -277,7 +277,7 @@ recv_hook (grub_net_udp_socket_t sock __attribute__ ((unused)),
|
||||
ptr += 4;
|
||||
}
|
||||
*data->addresses = grub_malloc (sizeof ((*data->addresses)[0])
|
||||
* grub_cpu_to_be16 (head->ancount));
|
||||
* grub_be_to_cpu16 (head->ancount));
|
||||
if (!*data->addresses)
|
||||
{
|
||||
grub_errno = GRUB_ERR_NONE;
|
||||
@ -286,7 +286,7 @@ recv_hook (grub_net_udp_socket_t sock __attribute__ ((unused)),
|
||||
}
|
||||
reparse_ptr = ptr;
|
||||
reparse:
|
||||
for (i = 0, ptr = reparse_ptr; i < grub_cpu_to_be16 (head->ancount); i++)
|
||||
for (i = 0, ptr = reparse_ptr; i < grub_be_to_cpu16 (head->ancount); i++)
|
||||
{
|
||||
int ignored = 0;
|
||||
grub_uint8_t class;
|
||||
|
Loading…
Reference in New Issue
Block a user