Fix a nasty bug spotted by Rob Purchase - the uploaded file was being truncated to a multiple of 64 bytes (PACKET_SIZE).

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18787 a1c6a512-1295-4272-9138-f99709370657
diff --git a/utils/tcctool/tcctool.c b/utils/tcctool/tcctool.c
index 533f088..c1d7a46 100644
--- a/utils/tcctool/tcctool.c
+++ b/utils/tcctool/tcctool.c
@@ -258,7 +258,7 @@
 int main(int argc, char* argv[])
 {
     char* buf;
-    int n,len;
+    int n,len,padded_len;
     int fd;
     int device;
 
@@ -306,7 +306,10 @@
         return 5;
     }
 
-    buf = malloc(len);
+    /* Round len up to multiple of PACKET_SIZE */
+    padded_len = (len + PACKET_SIZE) & ~(PACKET_SIZE-1);
+
+    buf = malloc(padded_len);
     if (buf == NULL)
     {
         printf("[ERR]  Could not allocate memory.\n");
@@ -323,7 +326,7 @@
     }
     close(fd);
 
-    do_patching(device, buf, len);
+    do_patching(device, buf, padded_len);
 
     return 0;
 }