Read the full buffer

sizeof wont work here since file_buf is now a pointer
This commit is contained in:
Jean Cyr 2014-07-10 00:55:33 -04:00
parent 8c6745d53f
commit 12da0efbb2
1 changed files with 2 additions and 2 deletions

View File

@ -432,8 +432,8 @@ PX4IO_Uploader::program(size_t fw_size)
while (sent < fw_size) {
/* get more bytes to program */
size_t n = fw_size - sent;
if (n > sizeof(file_buf)) {
n = sizeof(file_buf);
if (n > PROG_MULTI_MAX) {
n = PROG_MULTI_MAX;
}
count = read_with_retry(_fw_fd, file_buf, n);