pkg2zip icon indicating copy to clipboard operation
pkg2zip copied to clipboard

memset writing out of bounds

Open aguaviva opened this issue 7 months ago • 0 comments

note that diccid is 10 bytes long

char discid[10];

but here you clear 16 (0x10)

memset(discid, 0x00, 0x10);

aguaviva avatar Jul 23 '24 22:07 aguaviva