bk commit into 6.0 tree (hakank:1.2602)
Below is the list of changes that have just been committed into a local
6.0 repository of hakan. When hakan 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@1.2602, 2007-09-28 20:14:35+02:00, hakank@lu0011.wdf.sap.corp +1 -0
Fixed a gcc warning.
storage/falcon/MemMgr.cpp@1.4, 2007-09-28 20:14:30+02:00, hakank@lu0011.wdf.sap.corp +1 -1
Fixed a gcc warning.
diff -Nrup a/storage/falcon/MemMgr.cpp b/storage/falcon/MemMgr.cpp
--- a/storage/falcon/MemMgr.cpp 2007-09-25 07:14:41 +02:00
+++ b/storage/falcon/MemMgr.cpp 2007-09-28 20:14:30 +02:00
@@ -636,7 +636,7 @@ void MemMgr::releaseBlock(MemBlock *bloc
sync.lock(Exclusive);
//validateFreeList();
block->pool = NULL;
- ASSERT(length <= activeMemory);
+ ASSERT(length <= (int) activeMemory);
activeMemory -= length;
if (freeBlock->next && !freeBlock->next->memHeader.pool)
--
MySQL Code Commits Mailing List
For list archives:
http://lists.mysql.com/commits
To unsubscribe:
http://lists.mysql.com/commits?unsub=lists@pantek.com
Received on Fri Sep 28 14:14:54 2007
This archive was generated by hypermail 2.1.8
: Sun Oct 07 2007 - 09:44:20 EDT
|