• Tom Lane's avatar
    Check for fseeko() failure in pg_dump's _tarAddFile(). · 1b9cde51
    Tom Lane authored
    Coverity pointed out, not unreasonably, that we checked fseeko's
    result at every other call site but these.  Failure to seek in the
    temp file (note this is NOT pg_dump's output file) seems quite
    unlikely, and even if it did happen the file length cross-check
    further down would probably detect the problem.  Still, that's a
    poor excuse for not checking the result of a system call.
    1b9cde51
pg_backup_tar.c 27.9 KB