Kaydet (Commit) 33492060 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#735348 silence Unchecked return value from library

Change-Id: I834dabc524ac2e1af6a77da8f66edfc349e6556d
üst 859656f4
......@@ -367,12 +367,12 @@ SalXLib::SalXLib()
if ((flags = fcntl (m_pTimeoutFDS[0], F_GETFL)) != -1)
{
flags |= O_NONBLOCK;
fcntl (m_pTimeoutFDS[0], F_SETFL, flags);
(void)fcntl(m_pTimeoutFDS[0], F_SETFL, flags);
}
if ((flags = fcntl (m_pTimeoutFDS[1], F_GETFL)) != -1)
{
flags |= O_NONBLOCK;
fcntl (m_pTimeoutFDS[1], F_SETFL, flags);
(void)fcntl(m_pTimeoutFDS[1], F_SETFL, flags);
}
// insert [0] into read descriptor set.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment