Fixed bug #28062: Data received directly after accepting does not wake up select

This commit is contained in:
goldsimon 2009-11-20 16:16:20 +00:00
parent 6f38b63a47
commit 94a7fee8c8
2 changed files with 5 additions and 0 deletions

View File

@ -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)

View File

@ -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);
}