Merge branch 'poco-1.7.6' of https://github.com/pocoproject/poco into poco-1.7.6

This commit is contained in:
Guenter Obiltschnig 2016-10-18 22:26:18 +02:00
commit 88b040892c
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,6 @@
This is the changelog file for the POCO C++ Libraries.
Release 1.7.6 (2016-10-17)
Release 1.7.6 (2016-10-18)
==========================
- fixed GH #1298: ZipFileInfo: Assertion violation when reading ods files

View File

@ -147,6 +147,8 @@ int Socket::select(SocketList& readList, SocketList& writeList, SocketList& exce
}
epollSize = eventLast - eventsIn;
if (epollSize == 0) return 0;
epollfd = epoll_create(1);
if (epollfd < 0)
{