-
-
Notifications
You must be signed in to change notification settings - Fork 62
Closed
Labels
Description
We've discussed this in Cemetech SAX... ti_Read() has buggy end-of-file behavior. As of now, ti_read() continues to read past the end of the file, when it should stop. Example of usage that should stop, yet loops endlessly.
while(ti_Read(&check, sizeof(ProgData_t), 1, attributes)){ if(!strncmp(progname, check.name, 8)) {response = i; break;} i++; }
Posting mainly just for recording purposes.