mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-04 14:29:39 +00:00
Fixed bug #28062: Data received directly after accepting does not wake up select
This commit is contained in:
parent
6f38b63a47
commit
94a7fee8c8
@ -46,6 +46,10 @@ HISTORY
|
||||
|
||||
++ Bugfixes:
|
||||
|
||||
2009-11-20: Simon Goldschmidt (patch by Albert Bartel)
|
||||
* sockets.c: Fixed bug #28062: Data received directly after accepting
|
||||
does not wake up select
|
||||
|
||||
2009-11-11: Simon Goldschmidt
|
||||
* netdb.h: Fixed bug #27994: incorrect define for freeaddrinfo(addrinfo)
|
||||
|
||||
|
@ -1059,6 +1059,7 @@ event_callback(struct netconn *conn, enum netconn_evt evt, u16_t len)
|
||||
sys_sem_signal(socksem);
|
||||
return;
|
||||
}
|
||||
s = conn->socket;
|
||||
sys_sem_signal(socksem);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user