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

Modified Files:
      Tag: Feb2010
        ChangeLog.Feb2010 database.c 
Log Message:
don't try to GDKfree, malloced memory

Index: database.c
===================================================================
RCS file: /cvsroot/monetdb/sql/src/backends/monet5/merovingian/database.c,v
retrieving revision 1.11.2.1
retrieving revision 1.11.2.2
diff -u -d -r1.11.2.1 -r1.11.2.2
--- database.c  5 Mar 2010 14:42:39 -0000       1.11.2.1
+++ database.c  29 Mar 2010 17:59:14 -0000      1.11.2.2
@@ -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.1.2.3
retrieving revision 1.1.2.4
diff -u -d -r1.1.2.3 -r1.1.2.4
--- ChangeLog.Feb2010   29 Mar 2010 12:27:23 -0000      1.1.2.3
+++ ChangeLog.Feb2010   29 Mar 2010 17:59:14 -0000      1.1.2.4
@@ -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