new animator coverity complaints - silence them

check return of read/write to make coverity happy (even though they
should never fail as it's a pipe within a process).
This commit is contained in:
Carsten Haitzler 2015-07-08 18:51:11 +09:00
parent fbb462371f
commit ef65806ce4
1 changed files with 8 additions and 2 deletions

View File

@ -87,7 +87,10 @@ static void
_tick_send(char val) _tick_send(char val)
{ {
DBG("_tick_send(%i)", val); DBG("_tick_send(%i)", val);
pipe_write(timer_fd_write, &val, 1); if (pipe_write(timer_fd_write, &val, 1) != 0)
{
ERR("Cannot write to animator control fd");
}
} }
static void static void
@ -137,7 +140,10 @@ _timer_tick_core(void *data EINA_UNUSED, Ecore_Thread *thread)
} }
if ((ret == 1) && (FD_ISSET(timer_fd_read, &rfds))) if ((ret == 1) && (FD_ISSET(timer_fd_read, &rfds)))
{ {
pipe_read(timer_fd_read, &tick, sizeof(tick)); if (pipe_read(timer_fd_read, &tick, sizeof(tick)) != 0)
{
ERR("Cannot read from animator control fd");
}
DBG("tick = %i", tick); DBG("tick = %i", tick);
if (tick == -1) goto done; if (tick == -1) goto done;
} }