Patch level : 10.0 no patch

Files correlati     :   tc1.exe
Ricompilazione Demo : [ ]

Corretta la next match nel caso di fine file


git-svn-id: svn://10.65.10.50/trunk@19606 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
alex 2009-11-12 12:09:08 +00:00
parent b09ed289b5
commit 25e1fc55c5

View File

@ -766,7 +766,7 @@ bool TRelation::next_match(
for (f = fields.get(0); f; f = fields.get())
old.add(from.curr().get(f));
from.next();
ok = from.next() == NOERR;
old.restart();
@ -775,7 +775,7 @@ bool TRelation::next_match(
const TFixed_string v(from.curr().get(f));
const char* o = old.get();
if (v != o)
ok = FALSE;
ok = false;
}
}