1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 22:43:50 +01:00

lwip_sock_udp: provide port for #9376 API fix

This commit is contained in:
Martine Lenders 2018-06-20 14:21:07 +02:00
parent 45107b529d
commit 0151655de5

View File

@ -29,7 +29,6 @@ int sock_udp_create(sock_udp_t *sock, const sock_udp_ep_t *local,
const sock_udp_ep_t *remote, uint16_t flags)
{
assert(sock != NULL);
assert(local == NULL || local->port != 0);
assert(remote == NULL || remote->port != 0);
int res;