Use ip_addr_set_zero instead of memset(0)

This commit is contained in:
goldsimon 2010-06-14 20:17:08 +00:00
parent 24d823dae6
commit 435115d4fb

View File

@ -308,7 +308,7 @@ autoip_start(struct netif *netif)
("autoip_start(): could not allocate autoip\n"));
return ERR_MEM;
}
memset( autoip, 0, sizeof(struct autoip));
memset(autoip, 0, sizeof(struct autoip));
/* store this AutoIP client in the netif */
netif->autoip = autoip;
LWIP_DEBUGF(AUTOIP_DEBUG | LWIP_DBG_TRACE, ("autoip_start(): allocated autoip"));
@ -316,7 +316,7 @@ autoip_start(struct netif *netif)
autoip->state = AUTOIP_STATE_OFF;
autoip->ttw = 0;
autoip->sent_num = 0;
memset(&autoip->llipaddr, 0, sizeof(ip_addr_t));
ip_addr_set_zero(&autoip->llipaddr);
autoip->lastconflict = 0;
}