Bug fix: Reserved and unused fields of APM entries were not zeroed.
This commit is contained in:
parent
d66eef42f6
commit
439a14da1d
@ -880,7 +880,7 @@ static int iso_write_apm_entry(Ecma119Image *t, int apm_block_size,
|
||||
else
|
||||
block_fac = 2048 / apm_block_size;
|
||||
|
||||
memset(buf, apm_block_size, 0);
|
||||
memset(buf, 0, apm_block_size);
|
||||
wpt = buf;
|
||||
|
||||
/* Signature */
|
||||
|
Loading…
Reference in New Issue
Block a user