Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
371ddc48be |
@ -398,7 +398,9 @@ static int krk_long_add(KrkLong * res, const KrkLong * a, const KrkLong * b) {
|
||||
FINISH_OUTPUT(res);
|
||||
return 0;
|
||||
}
|
||||
return 1;
|
||||
krk_long_clear(res);
|
||||
FINISH_OUTPUT(res);
|
||||
return 0;
|
||||
} else if (a->width > 0 && b->width < 0) {
|
||||
switch (krk_long_compare_abs(a,b)) {
|
||||
case -1:
|
||||
@ -412,8 +414,9 @@ static int krk_long_add(KrkLong * res, const KrkLong * a, const KrkLong * b) {
|
||||
FINISH_OUTPUT(res);
|
||||
return 0;
|
||||
}
|
||||
krk_long_clear(res);
|
||||
FINISH_OUTPUT(res);
|
||||
return 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* sign must match for this, so take it from whichever */
|
||||
|
Loading…
Reference in New Issue
Block a user