C9340070

Explanation

The st_size element of the struct stat overflowed during a call to fstat(). The st_size_h element contains the upper 32-bits of the file size.

Programmer response

Use the large files version of fstat() or combine the st_size_h and st_size elements into a long long value to give you the size of the file.

Symbolic Feedback Code

JrEdcXfr2Eoverflow01