ports/devel/poco/files/patch-Net_src_SocketImpl.cpp
Joseph Mingrone a751f423dc devel/poco: update to 1.7.8
Upstream release notes: https://pocoproject.org/blog/?p=1037

PR:		217714
Submitted by:	henry.hu.sh@gmail.com (new maintainer)
Approved by:	swills (mentor, implicit)
2017-03-12 15:27:13 +00:00

11 lines
282 B
C++

--- Net/src/SocketImpl.cpp.orig 2017-03-06 05:45:17 UTC
+++ Net/src/SocketImpl.cpp
@@ -473,7 +473,7 @@ bool SocketImpl::poll(const Poco::Timesp
}
}
while (rc < 0 && lastError() == POCO_EINTR);
- if (rc < 0) error(errorCode);
+ if (rc < 0) error();
return rc > 0;
#else