Commit 78eb1d48 authored by Vladislav Vaintroub's avatar Vladislav Vaintroub

Fix endless loop in my_gethwaddr()

parent d5884888
......@@ -152,7 +152,10 @@ my_bool my_gethwaddr(uchar *to)
{
if (info->Type == MIB_IF_TYPE_ETHERNET &&
info->AddressLength == ETHER_ADDR_LEN)
{
res= memcpy_and_test(to, info->Address, ETHER_ADDR_LEN);
}
info = info->Next;
}
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