fixed an object protection mistake in hcl_divints()
This commit is contained in:
parent
164be69b9d
commit
966888844b
@ -2804,8 +2804,12 @@ hcl_oop_t hcl_divints (hcl_t* hcl, hcl_oop_t x, hcl_oop_t y, int modulo, hcl_oop
|
||||
if (!r) return HCL_NULL;
|
||||
}
|
||||
|
||||
if (rem) *rem = r;
|
||||
return normalize_bigint (hcl, z);
|
||||
hcl_pushtmp (hcl, &r);
|
||||
z = normalize_bigint(hcl, z);
|
||||
hcl_poptmp (hcl);
|
||||
|
||||
if (z && rem) *rem = r;
|
||||
return z;
|
||||
|
||||
oops_einval:
|
||||
hcl_seterrbfmt (hcl, HCL_EINVAL, "parameter not integer - %O, %O", x, y);
|
||||
|
Loading…
Reference in New Issue
Block a user