This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/source/blender/blenkernel
Sergey Sharybin 973f95fa9d Fix T40157: Loading movies larger than 4GB in size fails
Issue was caused by _wstat returning EOVERFLOW error because
of file size didn't fit into stat structure which was using
long datatype.

The idea of this patch is to use _wstat64 and _stat64 structure
which is capable storing 64bit file sizes.

Made it a typedef for stat structure used by BLI_stat function
in order to make code easier to follow and avoid ifdefs all
over the place.

Additionally solved issue with BLI_exists which was wrongly
returning False in cases destination file is larger then 4GB.
2014-05-28 23:21:39 +06:00
..
2014-04-11 11:33:29 +10:00
2014-03-29 08:42:59 +11:00
2014-05-14 06:37:56 +10:00
2014-03-20 22:56:28 +11:00
2014-05-11 16:22:05 +10:00
2014-05-22 17:40:35 +10:00
2014-05-02 21:19:08 -03:00
2013-09-18 00:07:17 +00:00
2014-05-14 06:37:56 +10:00
2014-05-07 06:11:28 +10:00
2013-12-26 21:33:58 +01:00
2014-02-07 09:39:22 +11:00
2014-03-20 22:56:28 +11:00
2014-04-15 14:25:33 +02:00