Update of /cvsroot/monetdb/sql/src/backends/monet5/merovingian
In directory sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv24987

Modified Files:
        ChangeLog.Feb2010 database.c 
Log Message:
propagated destroy crash bugfix from Feb2010 to development trunk

Index: database.c
===================================================================
RCS file: /cvsroot/monetdb/sql/src/backends/monet5/merovingian/database.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- database.c  10 Mar 2010 14:29:38 -0000      1.12
+++ database.c  29 Mar 2010 18:00:30 -0000      1.13
@@ -250,7 +250,7 @@
        if ((e = deletedir(stats->path)) != NULL) {
                snprintf(buf, sizeof(buf), "failed to destroy '%s': %s",
                                dbname, e);
-               GDKfree(e);
+               free(e);
                SABAOTHfreeStatus(&stats);
                return(strdup(buf));
        }

Index: ChangeLog.Feb2010
===================================================================
RCS file: 
/cvsroot/monetdb/sql/src/backends/monet5/merovingian/ChangeLog.Feb2010,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- ChangeLog.Feb2010   28 Mar 2010 13:53:51 -0000      1.4
+++ ChangeLog.Feb2010   29 Mar 2010 18:00:30 -0000      1.5
@@ -1,6 +1,10 @@
 # ChangeLog file for sql/src/backends/monet5/merovingian
 # This file is updated with mchangelog
 
+  29 Mar 2010; Fabian Groffen <[email protected]> database.c:
+  Fixed an issue where merovingian(1) would lock up or crash when
+  destroying a database failed.
+
 *Feb2010-SP1
 
   16 Mar 2010; Fabian Groffen <[email protected]>


------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Monetdb-sql-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-sql-checkins

Reply via email to