elf32: fix size in call to memset.
Pointed out by Eric Decker <cire831@gmail.com>.
This commit is contained in:
parent
78f26b5a5e
commit
9a425d2877
|
@ -260,7 +260,7 @@ static int feed_section(struct elf32_info *info,
|
||||||
|
|
||||||
static int read_all(struct elf32_info *info, FILE *in)
|
static int read_all(struct elf32_info *info, FILE *in)
|
||||||
{
|
{
|
||||||
memset(info, 0, sizeof(info));
|
memset(info, 0, sizeof(*info));
|
||||||
|
|
||||||
if (read_ehdr(info, in) < 0)
|
if (read_ehdr(info, in) < 0)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
Loading…
Reference in New Issue