protect from looking at unused fields
This commit is contained in:
parent
37bf70fde1
commit
0df80db205
@ -27,7 +27,7 @@
|
|||||||
/* skip, this is a problem because we lose information,
|
/* skip, this is a problem because we lose information,
|
||||||
namely active references */
|
namely active references */
|
||||||
pt1 = (tr_fr_ptr)pt;
|
pt1 = (tr_fr_ptr)pt;
|
||||||
} else if (IsAttVar(pt)) {
|
} else if (IN_BETWEEN(H0,pt,H) && IsAttVar(pt)) {
|
||||||
CELL val = Deref(*pt);
|
CELL val = Deref(*pt);
|
||||||
if (IsVarTerm(val)) {
|
if (IsVarTerm(val)) {
|
||||||
Bind(pt, MkAtomTerm(AtomCut));
|
Bind(pt, MkAtomTerm(AtomCut));
|
||||||
@ -130,7 +130,7 @@
|
|||||||
} else if (IsPairTerm(d1)) {
|
} else if (IsPairTerm(d1)) {
|
||||||
CELL *pt = RepPair(d1);
|
CELL *pt = RepPair(d1);
|
||||||
|
|
||||||
if (IsAttVar(pt)) {
|
if (IN_BETWEEN(H0,pt,H) && IsAttVar(pt)) {
|
||||||
CELL val = Deref(*pt);
|
CELL val = Deref(*pt);
|
||||||
if (IsVarTerm(val)) {
|
if (IsVarTerm(val)) {
|
||||||
Bind(VarOfTerm(val), MkAtomTerm(AtomCut));
|
Bind(VarOfTerm(val), MkAtomTerm(AtomCut));
|
||||||
|
Reference in New Issue
Block a user