1
0
Fork 0
forked from len0rd/rockbox

Patch by Alexandre Bourget, fixes the hanging iriverify plugin issue when converting already converted files

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6526 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2005-05-27 06:54:16 +00:00
parent e387a2238e
commit 3841348930

View file

@ -109,11 +109,8 @@ static int write_file(void)
str_begin = buf_ptr;
}
/* Ok, skip a char */
buf_ptr++;
/* until ... */
} while(buf_ptr < stringbuffer + readsize);
/* Next char, until ... */
} while(buf_ptr++ < stringbuffer + readsize);
rb->close(fd);