projects
/
openwrt
/
staging
/
wigyori.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d1156bc
)
firmware-utils: check_magic() in buffalo-lib.c always return 0
author
John Crispin
<john@openwrt.org>
Fri, 27 Dec 2013 21:15:31 +0000
(21:15 +0000)
committer
John Crispin
<john@openwrt.org>
Fri, 27 Dec 2013 21:15:31 +0000
(21:15 +0000)
spotted with cppcheck
Signed-off-by: Etienne CHAMPETIER <etienne.champetier@free.fr>
SVN-Revision: 39171
tools/firmware-utils/src/buffalo-lib.c
patch
|
blob
|
history
diff --git
a/tools/firmware-utils/src/buffalo-lib.c
b/tools/firmware-utils/src/buffalo-lib.c
index 29aee9f88dd44e874499ee5477d2a3a4b8cc9d87..add3a7e0233adb01b4e3876dcc55d79e6a8cc456 100644
(file)
--- a/
tools/firmware-utils/src/buffalo-lib.c
+++ b/
tools/firmware-utils/src/buffalo-lib.c
@@
-249,10
+249,10
@@
static uint32_t get_be32(void *data)
static int check_magic(void *magic)
{
- if (!memcmp("start", magic, ENC_MAGIC_LEN))
;
+ if (!memcmp("start", magic, ENC_MAGIC_LEN))
return 0;
- if (!memcmp("asar1", magic, ENC_MAGIC_LEN))
;
+ if (!memcmp("asar1", magic, ENC_MAGIC_LEN))
return 0;
return -1;