Commit 18895cb1 by alokp@chromium.org

Initialized TPoolAllocator::totalBytes. Patch submitted by timeless.

BUG=60 Review URL: http://codereview.appspot.com/2494041 git-svn-id: https://angleproject.googlecode.com/svn/trunk@452 736b8ea6-26fd-11df-bfd4-992fa37f6226
parent 95447df0
...@@ -83,7 +83,8 @@ TPoolAllocator::TPoolAllocator(bool g, int growthIncrement, int allocationAlignm ...@@ -83,7 +83,8 @@ TPoolAllocator::TPoolAllocator(bool g, int growthIncrement, int allocationAlignm
alignment(allocationAlignment), alignment(allocationAlignment),
freeList(0), freeList(0),
inUseList(0), inUseList(0),
numCalls(0) numCalls(0),
totalBytes(0)
{ {
// //
// Don't allow page sizes we know are smaller than all common // Don't allow page sizes we know are smaller than all common
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment