From 6ce2fb740eee224c608a7fea71d80b48414e4fec Mon Sep 17 00:00:00 2001 From: angelo Date: Mon, 10 Jul 1995 12:42:40 +0000 Subject: [PATCH] Corretto catch dell'errore in TCursor::lock. git-svn-id: svn://10.65.10.50/trunk@1583 c028cbd2-c16b-5b4b-a496-9718f37d4682 --- include/relation.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/relation.cpp b/include/relation.cpp index f89ae275c..4d1be6431 100755 --- a/include/relation.cpp +++ b/include/relation.cpp @@ -1,4 +1,4 @@ -// $Id: relation.cpp,v 1.52 1995-07-07 14:43:41 guy Exp $ +// $Id: relation.cpp,v 1.53 1995-07-10 12:42:40 angelo Exp $ // relation.cpp // fv 12/8/93 // relation class for isam files @@ -1114,7 +1114,7 @@ int TCursor::lock(TReclock l) default: break; } - if (rt < NOERR) rt=get_error(rt); + if (rt != NOERR) rt=get_error(rt); return(rt); }