402048 WARNING: unhandled ppc64[be|le]-linux syscall: 26 (ptrace)
402134 assertion fail in mc_translate.c (noteTmpUsesIn) Iex_VECRET on arm64
402327 Warning: DWARF2 CFI reader: unhandled DW_OP_ opcode 0x13 (DW_OP_drop)
+402395 coregrind/vgdb-invoker-solaris.c: 2 * poor error checking
Release 3.14.0 (9 October 2018)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
}
pstatus_t pstatus;
- bytes = read(status_fd, &pstatus, sizeof(pstatus));
- if ((bytes < 0) || (bytes != sizeof(pstatus))) {
+ ssize_t nread = read(status_fd, &pstatus, sizeof(pstatus));
+ if ((nread < 0) || (nread != sizeof(pstatus))) {
ERROR(errno, "Failed to read from %s.\n", procname);
close(status_fd);
return False;
}
lwpstatus_t status;
- bytes = read(status_fd, &status, sizeof(status));
- if ((bytes < 0) || (bytes != sizeof(status))) {
+ ssize_t nread = read(status_fd, &status, sizeof(status));
+ if ((nread < 0) || (nread != sizeof(status))) {
ERROR(errno, "Failed to read from %s.\n", procname);
close(status_fd);
return False;