minor touch up
This commit is contained in:
parent
f0d588414e
commit
4ee104e1ee
@ -1235,18 +1235,18 @@ static int __substitute (hawk_rtx_t* rtx, hawk_int_t max_count)
|
|||||||
{
|
{
|
||||||
int n;
|
int n;
|
||||||
n = hawk_rtx_setrec(rtx, 0, HAWK_OOECS_OOCS(&new), 0);
|
n = hawk_rtx_setrec(rtx, 0, HAWK_OOECS_OOCS(&new), 0);
|
||||||
if (n <= -1) goto oops;
|
if (HAWK_UNLIKELY(n <= -1)) goto oops;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
int n;
|
int n;
|
||||||
|
|
||||||
v = hawk_rtx_makestrvalwithoocs(rtx, HAWK_OOECS_OOCS(&new));
|
v = hawk_rtx_makestrvalwithoocs(rtx, HAWK_OOECS_OOCS(&new));
|
||||||
if (v == HAWK_NULL) goto oops;
|
if (HAWK_UNLIKELY(!v)) goto oops;
|
||||||
hawk_rtx_refupval (rtx, v);
|
hawk_rtx_refupval (rtx, v);
|
||||||
n = hawk_rtx_setrefval(rtx, (hawk_val_ref_t*)a2, v);
|
n = hawk_rtx_setrefval(rtx, (hawk_val_ref_t*)a2, v);
|
||||||
hawk_rtx_refdownval (rtx, v);
|
hawk_rtx_refdownval (rtx, v);
|
||||||
if (n <= -1) goto oops;
|
if (HAWK_UNLIKELY(n <= -1)) goto oops;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user