while (!feof(file) && !ferror(file)) {
size_t n = fread(buf, 1, sizeof(buf)-max_utf8_len, file);
int len = 0;
- if (jvp_utf8_backtrack(buf+(n-1), buf, &len) && len > 0) {
- if (!feof(file) && !ferror(file)) {
- n += fread(buf+n, 1, len, file);
- }
+
+ if (n == 0)
+ continue;
+ if (jvp_utf8_backtrack(buf+(n-1), buf, &len) && len > 0 &&
+ !feof(file) && !ferror(file)) {
+ n += fread(buf+n, 1, len, file);
}
if (raw) {
// *missing_bytes. If there are no leading bytes or an invalid byte is
// encountered, NULL is returned and *missing_bytes is not altered.
const char* jvp_utf8_backtrack(const char* start, const char* min, int *missing_bytes) {
- assert(min < start);
+ assert(min <= start);
if (min == start) {
return min;
}