Update of /cvsroot/monetdb/pathfinder/runtime
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv7951/pathfinder/runtime

Modified Files:
      Tag: XQuery_0-24
        pathfinder.mx 
Log Message:

Fixed typo in PROC ws_newpage() to make sure that (local) variable "err" is 
properly declared:

"var page_id := [EMAIL PROTECTED]; err := CATCH(page_id := 
__runtime_newpage(runtime));"
                   |
                   V
"var page_id := [EMAIL PROTECTED], err := CATCH(page_id := 
__runtime_newpage(runtime));"

This fixes
[ 1981750 ] PF/alg: some tests fail with "unknown variable 'err'"
http://sourceforge.net/tracker/index.php?func=detail&aid=1981750&group_id=56967&atid=482468


U pathfinder.mx
Index: pathfinder.mx
===================================================================
RCS file: /cvsroot/monetdb/pathfinder/runtime/pathfinder.mx,v
retrieving revision 1.416.2.3
retrieving revision 1.416.2.4
diff -u -d -r1.416.2.3 -r1.416.2.4
--- pathfinder.mx       25 May 2008 21:49:50 -0000      1.416.2.3
+++ pathfinder.mx       2 Jun 2008 21:53:44 -0000       1.416.2.4
@@ -2827,7 +2827,7 @@
     # if there is a free page, then this is easy
     var coll_shortlock := reverse(runtime).fetch(RT_LOCK_FREELIST);
     lock_set(coll_shortlock);
-    var page_id := [EMAIL PROTECTED]; err := CATCH(page_id := 
__runtime_newpage(runtime));
+    var page_id := [EMAIL PROTECTED], err := CATCH(page_id := 
__runtime_newpage(runtime));
     lock_unset(coll_shortlock);
 
     if (isnil(err) and isnil(page_id)) {


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Monetdb-pf-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-pf-checkins

Reply via email to