Search found 1 match

by sadse
Wed Jan 02, 2019 6:16 am
Forum: General
Topic: Bug reporting thread
Replies: 47
Views: 189982

Re: Bug reporting thread

Hi, I stumbled on a major problem. The common trick to get the size of a file: int sz; fseek(myFile, 0, SEEK_END); sz = ftell(myFile); fseek(myFile, 0, SEEK_SET); doesn't work, and reports that it is impossible to seek beyond a file. . For now, the most reliable workaround I've found is getting the...