Skip to content

Commit

Permalink
Repaired bug that did not treat argument that is zero correctly.
Browse files Browse the repository at this point in the history
  • Loading branch information
vermaseren committed Dec 19, 2014
1 parent 3888b95 commit b7b7bcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/argument.c
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ ScaledVariety:;
if ( MultDo(BHEAD m,AT.mulpat) ) goto execargerr;
AT.WorkPointer = m + *m;
}
if ( Generator(BHEAD m,level) ) goto execargerr;
if ( ( *m != 0 ) && Generator(BHEAD m,level) ) goto execargerr;
AT.WorkPointer = r1;
}
if ( EndSort(BHEAD AT.WorkPointer+ARGHEAD,1) < 0 ) goto execargerr;
Expand Down

0 comments on commit b7b7bcb

Please sign in to comment.