Blender Git Loki
Git Commits -> Revision 875a8a6
Revision 875a8a6 by Harley Acheson (master) May 31, 2021, 17:08 (GMT) |
Cleanup: Replace fseek() calls with BLI_fseek() The fseek() function on Windows only accepts a 32-bit long offset argument. Because of this we have our own version, BLI_fseek(), which will use 64-bit _fseeki64() on Windows. This patch just replaces some fseek() calls with BLI_fseek(). Differential Revision: https://developer.blender.org/D11430 Reviewed by Brecht Van Lommel |
Commit Details:
Full Hash: 875a8a6c79b0c5da1715b70eaa58b12f9b816767
Parent Commit: 261a10e
Lines Changed: +11, -11