From: Vinson Lee Date: Mon, 15 Feb 2010 05:45:01 +0000 (-0800) Subject: glu/sgi: Initialize member of class Pool. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9867b6eaad0f67f74b3bb98e2c120312117208ba;p=mesa.git glu/sgi: Initialize member of class Pool. --- diff --git a/src/glu/sgi/libnurbs/internals/bufpool.cc b/src/glu/sgi/libnurbs/internals/bufpool.cc index 8cc847ab225..53ac1a5695d 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; + } } /*-----------------------------------------------------------------------------