diff options
author | Tom Rini <trini@embeddedalley.com> | 2008-12-08 01:02:00 -0700 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2008-12-08 20:45:47 +0200 |
commit | a8c858c45470aa6165acec2b2a3ca156124fdb2e (patch) | |
tree | f0b7752d5b30d59409b4ac57f77359fcf3ef35c3 /ubi-utils/src/libpfiflash.c | |
parent | c7929b71e476729c38895de3db8c1afcfabf5352 (diff) |
ubi-utils: various fixes
gcc-4.3.x introduces a number of new warnings (and we use -Werror) for
things like not checking scanf return values and not using explicit
formatting. Finally, it caught that we were overflowing our own buffer
in unubi.c, so increate the variable size as we want to declare and
clear PATH_MAX + 1, then use only PATH_MAX of the variable.
Signed-off-by: Tom Rini <trini@embeddedalley.com>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'ubi-utils/src/libpfiflash.c')
-rw-r--r-- | ubi-utils/src/libpfiflash.c | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/ubi-utils/src/libpfiflash.c b/ubi-utils/src/libpfiflash.c index 7e3d3b3..cf18ad3 100644 --- a/ubi-utils/src/libpfiflash.c +++ b/ubi-utils/src/libpfiflash.c @@ -136,7 +136,7 @@ skip_raw_volumes(FILE* pfi, list_t pfi_raws, } err: - EBUF(PFIFLASH_ERRSTR[-rc]); + EBUF("%s", PFIFLASH_ERRSTR[-rc]); return rc; } @@ -173,7 +173,7 @@ my_ubi_mkvol(int devno, int s, pfi_ubi_t u, ulib = libubi_open(); if (ulib == NULL) { rc = -PFIFLASH_ERR_UBI_OPEN; - EBUF(PFIFLASH_ERRSTR[-rc]); + EBUF("%s", PFIFLASH_ERRSTR[-rc]); goto err; } @@ -239,7 +239,7 @@ my_ubi_rmvol(int devno, uint32_t id, ulib = libubi_open(); if (ulib == NULL) { rc = -PFIFLASH_ERR_UBI_OPEN; - EBUF(PFIFLASH_ERRSTR[-rc]); + EBUF("%s", PFIFLASH_ERRSTR[-rc]); goto err; } @@ -323,7 +323,7 @@ read_bootenv_volume(int devno, uint32_t id, bootenv_t bootenv_old, ulib = libubi_open(); if (ulib == NULL) { rc = -PFIFLASH_ERR_UBI_OPEN; - EBUF(PFIFLASH_ERRSTR[-rc]); + EBUF("%s", PFIFLASH_ERRSTR[-rc]); goto err; } @@ -342,7 +342,7 @@ read_bootenv_volume(int devno, uint32_t id, bootenv_t bootenv_old, rc = bootenv_read(fp_in, bootenv_old, BOOTENV_MAXSIZE); if (rc != 0) { rc = -PFIFLASH_ERR_BOOTENV_READ; - EBUF(PFIFLASH_ERRSTR[-rc]); + EBUF("%s", PFIFLASH_ERRSTR[-rc]); goto err; } @@ -421,7 +421,7 @@ write_bootenv_volume(int devno, uint32_t id, bootenv_t bootenv_old, ulib = libubi_open(); if (ulib == NULL) { rc = -PFIFLASH_ERR_UBI_OPEN; - EBUF(PFIFLASH_ERRSTR[-rc]); + EBUF("%s", PFIFLASH_ERRSTR[-rc]); goto err; } @@ -442,7 +442,7 @@ write_bootenv_volume(int devno, uint32_t id, bootenv_t bootenv_old, rc = bootenv_read_crc(fp_in, bootenv_new, fp_in_size, &crc); if (rc != 0) { rc = -PFIFLASH_ERR_BOOTENV_READ; - EBUF(PFIFLASH_ERRSTR[-rc]); + EBUF("%s", PFIFLASH_ERRSTR[-rc]); goto err; } else if (crc != pfi_crc) { rc = -PFIFLASH_ERR_CRC_CHECK; @@ -464,7 +464,7 @@ write_bootenv_volume(int devno, uint32_t id, bootenv_t bootenv_old, rc = bootenv_size(bootenv_res, &update_size); if (rc != 0) { rc = -PFIFLASH_ERR_BOOTENV_SIZE; - EBUF(PFIFLASH_ERRSTR[-rc]); + EBUF("%s", PFIFLASH_ERRSTR[-rc]); goto err; } @@ -554,7 +554,7 @@ write_normal_volume(int devno, uint32_t id, size_t update_size, FILE* fp_in, ulib = libubi_open(); if (ulib == NULL) { rc = -PFIFLASH_ERR_UBI_OPEN; - EBUF(PFIFLASH_ERRSTR[-rc]); + EBUF("%s", PFIFLASH_ERRSTR[-rc]); goto err; } @@ -586,13 +586,13 @@ write_normal_volume(int devno, uint32_t id, size_t update_size, FILE* fp_in, bytes_left : sizeof buf; if (fread(buf, 1, to_rw, fp_in) != to_rw) { rc = -PFIFLASH_ERR_EOF; - EBUF(PFIFLASH_ERRSTR[-rc]); + EBUF("%s", PFIFLASH_ERRSTR[-rc]); goto err; } crc = clc_crc32(crc32_table, crc, buf, to_rw); if (fwrite(buf, 1, to_rw, fp_out) != to_rw) { rc = -PFIFLASH_ERR_FIO; - EBUF(PFIFLASH_ERRSTR[-rc]); + EBUF("%s", PFIFLASH_ERRSTR[-rc]); goto err; } bytes_left -= to_rw; @@ -770,7 +770,7 @@ static int compare_volumes(int devno, pfi_ubi_t u, FILE *fp_pfi, err: if (rc < 0) - EBUF(PFIFLASH_ERRSTR[-rc]); + EBUF("%s", PFIFLASH_ERRSTR[-rc]); for (i = 0; i < u->ids_size; i++) fclose(fp_flash[i]); @@ -877,11 +877,11 @@ process_raw_volumes(FILE* pfi, list_t pfi_raws, const char* rawdev, int c = fgetc(pfi); if (c == EOF) { rc = -PFIFLASH_ERR_EOF; - EBUF(PFIFLASH_ERRSTR[-rc]); + EBUF("%s", PFIFLASH_ERRSTR[-rc]); goto err; } else if (ferror(pfi)) { rc = -PFIFLASH_ERR_FIO; - EBUF(PFIFLASH_ERRSTR[-rc]); + EBUF("%s", PFIFLASH_ERRSTR[-rc]); goto err; } pfi_data[j] = (char)c; @@ -906,7 +906,7 @@ process_raw_volumes(FILE* pfi, list_t pfi_raws, const char* rawdev, for (j = 0; j < r->starts_size; j++) { rc = erase_mtd_region(mtd, r->starts[j], r->data_size); if (rc) { - EBUF(PFIFLASH_ERRSTR[-rc]); + EBUF("%s", PFIFLASH_ERRSTR[-rc]); goto err; } @@ -916,7 +916,7 @@ process_raw_volumes(FILE* pfi, list_t pfi_raws, const char* rawdev, if (c == EOF) { fclose(mtd); rc = -PFIFLASH_ERR_EOF; - EBUF(PFIFLASH_ERRSTR[-rc]); + EBUF("%s", PFIFLASH_ERRSTR[-rc]); goto err; } if ((char)c != pfi_data[k]) { @@ -1100,7 +1100,7 @@ process_ubi_volumes(FILE* pfi, int seqnum, list_t pfi_ubis, break; default: rc = -PFIFLASH_ERR_UBI_UNKNOWN; - EBUF(PFIFLASH_ERRSTR[-rc]); + EBUF("%s", PFIFLASH_ERRSTR[-rc]); goto err; } } @@ -1137,7 +1137,7 @@ mirror_ubi_volumes(uint32_t devno, list_t pfi_ubis, ulib = libubi_open(); if (ulib == NULL) { rc = -PFIFLASH_ERR_UBI_OPEN; - EBUF(PFIFLASH_ERRSTR[-rc]); + EBUF("%s", PFIFLASH_ERRSTR[-rc]); goto err; } @@ -1259,7 +1259,7 @@ pfiflash_with_options(FILE* pfi, int complete, int seqnum, int compare, pdd_f = pdd_funcs[pdd_handling]; else { rc = -PFIFLASH_ERR_PDD_UNKNOWN; - EBUF(PFIFLASH_ERRSTR[-rc]); + EBUF("%s", PFIFLASH_ERRSTR[-rc]); goto err; } |