Dont cast from char* to struct chrp_header* which has a bigger alignment

requirements. Copy it via union instead. Fixes a clang warning about
alignment.

Reviewed by:    sobomax
This commit is contained in:
Roman Divacky 2012-08-27 14:51:26 +00:00
parent ae7f84a9a4
commit b1fcaf5f95
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=239733

View file

@ -51,12 +51,16 @@ struct deletelist {
struct deletelist *last;
};
union {
uint8_t buf[sizeof(struct chrp_header)];
struct chrp_header header;
} conv;
int
main(int argc, char **argv)
{
int opt, dump, fd, res, i, size;
uint8_t buf[NVRAM_SIZE], *cp, *common;
struct chrp_header *header;
struct deletelist *dl;
dump = 0;
@ -116,9 +120,9 @@ main(int argc, char **argv)
/* Locate common block */
size = 0;
for (cp = buf; cp < buf + sizeof(buf); cp += size) {
header = (struct chrp_header *)cp;
size = header->length * 0x10;
if (strncmp(header->name, "common", 7) == 0)
memcpy(conv.buf, cp, sizeof(struct chrp_header));
size = conv.header.length * 0x10;
if (strncmp(conv.header.name, "common", 7) == 0)
break;
}
if (cp >= buf + sizeof(buf) || size <= (int)sizeof(struct chrp_header))