List:Commits« Previous MessageNext Message »
From:Hakan Kuecuekyilmaz Date:September 27 2008 8:38pm
Subject:bzr commit into mysql-6.0-falcon-team branch (hky:2834) Bug#39574
View as plain text  
#At file:///home/hakan/work/mysql/mysql-6.0-falcon-team-bug39574/

 2834 Hakan Kuecuekyilmaz	2008-09-27
      Fix for Bug#39574 Falcon asserts after crash in DataPage.cpp line 87.
modified:
  storage/falcon/DataPage.h

per-file messages:
  storage/falcon/DataPage.h
    Avoid integer overflow.
=== modified file 'storage/falcon/DataPage.h'
--- a/storage/falcon/DataPage.h	2008-06-17 17:41:54 +0000
+++ b/storage/falcon/DataPage.h	2008-09-27 18:37:54 +0000
@@ -35,8 +35,8 @@ struct RecordIndex;
 struct SectionAnalysis;
 
 struct LineIndex {
-	short		offset;
-	short		length;				// negative means record has overflow page
+	uint16		offset;
+	int16		length;				// negative means record has overflow page
 	};
 
 class DataPage : public Page

Thread
bzr commit into mysql-6.0-falcon-team branch (hky:2834) Bug#39574Hakan Kuecuekyilmaz27 Sep