tools: edimax_fw_header: fix suspicious memset usage
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sat, 10 Jan 2015 18:08:16 +0000 (18:08 +0000)
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sat, 10 Jan 2015 18:08:16 +0000 (18:08 +0000)
memset() was called with a size argument against a pointer size, not the
structure size itself.

Signed-off-by: Florian Fainelli <florian@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@43913 3c298f89-4303-0410-b956-a3cf2f4a3e73

tools/firmware-utils/src/edimax_fw_header.c

index ff094da..b85e3a1 100644 (file)
@@ -281,7 +281,7 @@ static int build_fw(void)
 
        /* fill firmware header */
        hdr = (struct edimax_header *)buf;
-       memset(hdr, 0, sizeof(struct edimax_header *));
+       memset(hdr, 0, sizeof(struct edimax_header));
 
        strncpy(hdr->model, model, sizeof(hdr->model));
        strncpy(hdr->magic, magic, sizeof(hdr->magic));