summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-05-27 06:54:16 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-05-27 06:54:16 +0000
commit38413489305efad4f682534f92c5daa031f5440a (patch)
tree4151bd55b138d11673bd90ee68b4746d5eecd48c /apps
parente387a2238e506234e51ebcaf614b7ed4e00a4271 (diff)
downloadrockbox-38413489305efad4f682534f92c5daa031f5440a.tar.gz
rockbox-38413489305efad4f682534f92c5daa031f5440a.zip
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
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/iriverify.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/apps/plugins/iriverify.c b/apps/plugins/iriverify.c
index 9e7cdfb16a..7b5c21832f 100644
--- a/apps/plugins/iriverify.c
+++ b/apps/plugins/iriverify.c
@@ -109,11 +109,8 @@ static int write_file(void)
109 str_begin = buf_ptr; 109 str_begin = buf_ptr;
110 } 110 }
111 111
112 /* Ok, skip a char */ 112 /* Next char, until ... */
113 buf_ptr++; 113 } while(buf_ptr++ < stringbuffer + readsize);
114
115 /* until ... */
116 } while(buf_ptr < stringbuffer + readsize);
117 114
118 rb->close(fd); 115 rb->close(fd);
119 116