List:Commits« Previous MessageNext Message »
From:Magnus Blåudd Date:September 9 2009 8:22am
Subject:bzr commit into mysql-5.1-telco-6.3 branch (magnus.blaudd:3041)
Bug#46113
View as plain text  
#At file:///home/msvensson/mysql/bug46113/6.3/ based on revid:magnus.blaudd@stripped12-0rthmuepifj6axtp

 3041 Magnus Blåudd	2009-09-09
      Bug#46113 ndbd fails to start when built with gcc-4.4.0 (e.g Fedora 11)
       - Avoid unintentional zero-initializartion of TakeOverRecord using
         default constructor 

    modified:
      storage/ndb/src/kernel/blocks/dbdih/DbdihInit.cpp
=== modified file 'storage/ndb/src/kernel/blocks/dbdih/DbdihInit.cpp'
--- a/storage/ndb/src/kernel/blocks/dbdih/DbdihInit.cpp	2009-05-27 12:11:46 +0000
+++ b/storage/ndb/src/kernel/blocks/dbdih/DbdihInit.cpp	2009-09-09 08:20:02 +0000
@@ -48,7 +48,7 @@ void Dbdih::initData() 
     Ptr<TakeOverRecord> ptr;
     while (c_activeTakeOverList.seize(ptr))
     {
-      new (ptr.p) TakeOverRecord();
+      new (ptr.p) TakeOverRecord;
     }
     while (c_activeTakeOverList.first(ptr))
     {

Attachment: [text/bzr-bundle] bzr/magnus.blaudd@sun.com-20090909082002-uueiant6hklugm24.bundle
Thread
bzr commit into mysql-5.1-telco-6.3 branch (magnus.blaudd:3041)Bug#46113Magnus Blåudd9 Sep