You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Unit GpHugeF.pas
the class (and some functions) use a Buffer-Offset. But this offset is defined
as DWORD.
Is there any possibility in X64 and very large files (I have >3GB-Files), that
the BufOffset is too small?
TGpHugeFile = class
private
hfAsynchronous : boolean;
hfBlockSize : DWORD;
(...)
hfBufFilePos : HugeInt; //cached FilePos (according the current hfBufOffs)
hfBufOffs : DWORD; //current position inside the buffer
Suggestion:
hfBufOffs : HugeInt;
Original issue reported on code.google.com by [email protected] on 25 Mar 2015 at 8:58
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 25 Mar 2015 at 8:58The text was updated successfully, but these errors were encountered: