diff options
author | Mathias Kresin <dev@kresin.me> | 2017-06-26 19:22:52 +0200 |
---|---|---|
committer | Mathias Kresin <dev@kresin.me> | 2017-06-26 20:08:36 +0200 |
commit | 06741411e020bb28160ddd42149d6a489800dbc7 (patch) | |
tree | 353b36569c688cac8ac14e2ea16702f5ac5f8600 /tools/firmware-utils | |
parent | f33de8023228d7d6545ff12c4f2ef8febb486f37 (diff) | |
download | upstream-06741411e020bb28160ddd42149d6a489800dbc7.tar.gz upstream-06741411e020bb28160ddd42149d6a489800dbc7.tar.bz2 upstream-06741411e020bb28160ddd42149d6a489800dbc7.zip |
firmware-utils: fix dgn3500sum compiler warnings
The sum variable need to be initialised, otherwise it will points to
random stack memory and a bogus image checksum might be calculated.
While at it, fix the segfault in case the product region code isn't
specified and enable compiler warnings which had revealed all the code
issues.
Signed-off-by: Mathias Kresin <dev@kresin.me>
Diffstat (limited to 'tools/firmware-utils')
-rw-r--r-- | tools/firmware-utils/Makefile | 2 | ||||
-rw-r--r-- | tools/firmware-utils/src/dgn3500sum.c | 5 |
2 files changed, 3 insertions, 4 deletions
diff --git a/tools/firmware-utils/Makefile b/tools/firmware-utils/Makefile index 2504678768..883a7ad4b3 100644 --- a/tools/firmware-utils/Makefile +++ b/tools/firmware-utils/Makefile @@ -73,7 +73,7 @@ define Host/Compile $(call cc,mkdcs932, -Wall) $(call cc,mkheader_gemtek,-lz) $(call cc,mkrtn56uimg, -lz) - $(call cc,dgn3500sum) + $(call cc,dgn3500sum, -Wall) $(call cc,edimax_fw_header, -Wall) $(call cc,mkmerakifw sha1, -Wall) $(call cc,mkmerakifw-old, -Wall) diff --git a/tools/firmware-utils/src/dgn3500sum.c b/tools/firmware-utils/src/dgn3500sum.c index 00a0c5f837..eb80e6c01b 100644 --- a/tools/firmware-utils/src/dgn3500sum.c +++ b/tools/firmware-utils/src/dgn3500sum.c @@ -103,7 +103,7 @@ int main(int argc, char** argv) unsigned long start, i; char *endptr, *buffer, *p; int count; // size of file in bytes - unsigned short sum, sum1; + unsigned short sum = 0, sum1 = 0; char sumbuf[9]; if(argc < 3) { @@ -117,7 +117,7 @@ int main(int argc, char** argv) printf("ERROR: File not writeable!\n"); return 1; } - if(argc = 4) + if(argc == 4) { printf("%s: PID type: %s\n", argv[0], argv[3]); if(strcmp(argv[3], "DE")==0) @@ -147,7 +147,6 @@ int main(int argc, char** argv) start = strtol(argv[2], &endptr, 16); p = buffer+start; - sum1 = 0; for(i = 0; i < count - start; i++) { sum1 += p[i]; |