Skip to content

Commit ab68f32

Browse files
authored
RefEnd() and goto together considered extra harmful. (#105)
1 parent 869cb5f commit ab68f32

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

eval.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,8 +416,8 @@ extern List *eval(List *list0, Binding *binding0, int flags) {
416416
case nList: {
417417
Ref(List *, lp, glom(cp->tree, cp->binding, TRUE));
418418
list = append(lp, list->next);
419-
goto restart;
420419
RefEnd(lp);
420+
goto restart;
421421
}
422422
default:
423423
panic("eval: bad closure node kind %d",

trip.es

2 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)