mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
added buffer length parameter to prevent vulnerability to buffer
overflow exploits.
This commit is contained in:
parent
b30ff1f284
commit
602f1df356
@ -243,10 +243,10 @@ int main(int argc, char **argv)
|
||||
nextsync = next_sync (offset, &synclen);
|
||||
}
|
||||
while (p > q && (p - q >= INSN_MAX || lenread == 0)) {
|
||||
lendis = disasm (q, outbuf, bits, offset, autosync, prefer);
|
||||
lendis = disasm (q, outbuf, sizeof(outbuf), bits, offset, autosync, prefer);
|
||||
if (!lendis || lendis > (p - q) ||
|
||||
(unsigned long)lendis > nextsync-offset)
|
||||
lendis = eatbyte (q, outbuf);
|
||||
lendis = eatbyte (q, outbuf, sizeof(outbuf));
|
||||
output_ins (offset, q, lendis, outbuf);
|
||||
q += lendis;
|
||||
offset += lendis;
|
||||
|
Loading…
x
Reference in New Issue
Block a user