C9340074

Explanation

The st_blocks element of the struct stat overflowed during a call to stat(). The st_blocks_h element contains the upper 32-bits of the number of I/O blocks.

Programmer response

Use the large files version of stat() or combine the st_blocks_h and st_blocks elements into a long long value to give you the number of I/O blocks.

Symbolic Feedback Code

JrEdcXfr2Eoverflow05