diff options
author | Vinson Lee <vlee@vmware.com> | 2010-02-14 21:45:01 -0800 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-02-14 21:45:01 -0800 |
commit | 9867b6eaad0f67f74b3bb98e2c120312117208ba (patch) | |
tree | babaa0e7213a2d607e7bd7056dc2ff4b7ce4886e | |
parent | 86d98fa4a2dfdae75e6ecd9a7e6e73d4183075a0 (diff) |
glu/sgi: Initialize member of class Pool.
-rw-r--r-- | src/glu/sgi/libnurbs/internals/bufpool.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/glu/sgi/libnurbs/internals/bufpool.cc b/src/glu/sgi/libnurbs/internals/bufpool.cc index 8cc847ab22..53ac1a5695 100644 --- a/src/glu/sgi/libnurbs/internals/bufpool.cc +++ b/src/glu/sgi/libnurbs/internals/bufpool.cc @@ -60,6 +60,9 @@ Pool::Pool( int _buffersize, int initpoolsize, const char *n ) curblock = 0; freelist = 0; nextfree = 0; + for (int i = 0; i < NBLOCKS; i++) { + blocklist[i] = 0; + } } /*----------------------------------------------------------------------------- |