Huw Davies : iphlpapi: Use the correct physical address.

Alexandre Julliard julliard at winehq.org
Mon Aug 23 16:24:13 CDT 2021


Module: wine
Branch: master
Commit: 6460f72db498748a3616b82f937ecbc7d798b65b
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=6460f72db498748a3616b82f937ecbc7d798b65b

Author: Huw Davies <huw at codeweavers.com>
Date:   Mon Aug 23 07:33:04 2021 +0100

iphlpapi: Use the correct physical address.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=51642
Signed-off-by: Huw Davies <huw at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/iphlpapi/iphlpapi_main.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/iphlpapi/iphlpapi_main.c b/dlls/iphlpapi/iphlpapi_main.c
index 7d75ce5af3a..47c8a507e38 100644
--- a/dlls/iphlpapi/iphlpapi_main.c
+++ b/dlls/iphlpapi/iphlpapi_main.c
@@ -1280,9 +1280,9 @@ static DWORD adapters_addresses_alloc( ULONG family, ULONG flags, IP_ADAPTER_ADD
             aa[i].FriendlyName = (WCHAR *)str_ptr;
             str_ptr += sizeof(rw[i].alias.String);
         }
-        aa[i].PhysicalAddressLength = rw->phys_addr.Length;
+        aa[i].PhysicalAddressLength = rw[i].phys_addr.Length;
         if (aa[i].PhysicalAddressLength > sizeof(aa[i].PhysicalAddress)) aa[i].PhysicalAddressLength = 0;
-        memcpy( aa[i].PhysicalAddress, rw->phys_addr.Address, aa[i].PhysicalAddressLength );
+        memcpy( aa[i].PhysicalAddress, rw[i].phys_addr.Address, aa[i].PhysicalAddressLength );
         aa[i].Mtu = dyn[i].mtu;
         aa[i].IfType = stat[i].type;
         aa[i].OperStatus = dyn[i].oper_status;




More information about the wine-cvs mailing list