Commit f94947db authored by Vladislav Vaintroub's avatar Vladislav Vaintroub

Fix endless loop in my_gethwaddr()

parent 75728894
...@@ -152,7 +152,10 @@ my_bool my_gethwaddr(uchar *to) ...@@ -152,7 +152,10 @@ my_bool my_gethwaddr(uchar *to)
{ {
if (info->Type == MIB_IF_TYPE_ETHERNET && if (info->Type == MIB_IF_TYPE_ETHERNET &&
info->AddressLength == ETHER_ADDR_LEN) info->AddressLength == ETHER_ADDR_LEN)
{
res= memcpy_and_test(to, info->Address, ETHER_ADDR_LEN); res= memcpy_and_test(to, info->Address, ETHER_ADDR_LEN);
}
info = info->Next;
} }
err: err:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment