Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions asm/parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -1175,6 +1175,11 @@ insn *parse_line(char *buffer, insn *result)
* put the decorator information in the (opflag_t) type field
* of previous operand.
*/
if (opnum == 0) {
nasm_nonfatal("decorator without an operand");
goto fail;
}

opnum--; op--;
switch (value->value) {
case BRC_RN:
Expand Down