fixed some warnings

This commit is contained in:
Guenter Obiltschnig 2016-09-06 15:49:39 +02:00
parent d221a7eebd
commit 192a5f179f
3 changed files with 10 additions and 4 deletions

View File

@ -47,6 +47,7 @@ namespace
return envbuf;
}
#if defined(POCO_OS_FAMILY_VMS)
void setEnvironmentVariables(const Poco::Process::Env& env)
{
for (Poco::Process::Env::const_iterator it = env.begin(); it != env.end(); ++it)
@ -54,6 +55,7 @@ namespace
Poco::Environment::set(it->first, it->second);
}
}
#endif
}

View File

@ -151,7 +151,8 @@ int Socket::select(SocketList& readList, SocketList& writeList, SocketList& exce
if (epollfd < 0)
{
char buf[1024];
strerror_r(errno, buf, sizeof(buf));
int rc = strerror_r(errno, buf, sizeof(buf));
poco_assert (rc == 0);
SocketImpl::error(std::string("Can't create epoll queue: ") + buf);
}
@ -163,7 +164,8 @@ int Socket::select(SocketList& readList, SocketList& writeList, SocketList& exce
if (epoll_ctl(epollfd, EPOLL_CTL_ADD, sockfd, e) < 0)
{
char buf[1024];
strerror_r(errno, buf, sizeof(buf));
int rc = strerror_r(errno, buf, sizeof(buf));
poco_assert (rc == 0);
::close(epollfd);
SocketImpl::error(std::string("Can't insert socket to epoll queue: ") + buf);
}

View File

@ -403,7 +403,8 @@ bool SocketImpl::poll(const Poco::Timespan& timeout, int mode)
if (epollfd < 0)
{
char buf[1024];
strerror_r(errno, buf, sizeof(buf));
int rc = strerror_r(errno, buf, sizeof(buf));
poco_assert (rc == 0);
error(std::string("Can't create epoll queue: ") + buf);
}
@ -420,7 +421,8 @@ bool SocketImpl::poll(const Poco::Timespan& timeout, int mode)
if (epoll_ctl(epollfd, EPOLL_CTL_ADD, sockfd, &evin) < 0)
{
char buf[1024];
strerror_r(errno, buf, sizeof(buf));
int rc = strerror_r(errno, buf, sizeof(buf));
poco_assert (rc == 0);
::close(epollfd);
error(std::string("Can't insert socket to epoll queue: ") + buf);
}