From: Date: May 29 2008 8:42pm Subject: bk commit into 6.0 tree (vvaintroub:1.2686) List-Archive: http://lists.mysql.com/commits/47214 Message-Id: <200805291643.m4TGhEE8006101@mail.mysql.com> Below is the list of changes that have just been committed into a local 6.0 repository of vvaintroub. When vvaintroub does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html ChangeSet@stripped, 2008-05-29 18:42:39+02:00, vvaintroub@wva. +1 -0 Fix valgrind memory-leak warning storage/falcon/ha_falcon.cpp@stripped, 2008-05-29 18:42:36+02:00, vvaintroub@wva. +4 -0 Fix valgrind memory-leak warning diff -Nrup a/storage/falcon/ha_falcon.cpp b/storage/falcon/ha_falcon.cpp --- a/storage/falcon/ha_falcon.cpp 2008-05-28 17:48:55 +02:00 +++ b/storage/falcon/ha_falcon.cpp 2008-05-29 18:42:36 +02:00 @@ -3439,6 +3439,10 @@ int StorageInterface::recover (handlerto void StorageInterface::mapFields(TABLE *table) { maxFields = storageShare->format->maxId; + + if (fieldMap) + delete[] fieldMap; + fieldMap = new Field*[maxFields]; memset(fieldMap, 0, sizeof(fieldMap[0]) * maxFields); char nameBuffer[129];