Files
OpenSceneGraph/include/osgDB
Robert Osfield 0c84f2deff From Cedric Pinson, "Here a fix about a leak in InputStream::decompress
I changed
       _in->setStream( new std::stringstream(data) );
to
       _dataDecompress = new std::stringstream(data);
       _in->setStream( _dataDecompress );

Then when the destructor is of InputStream is called I delete the
dataDecompress stringstream.
"
2010-06-15 10:02:34 +00:00
..
2009-06-19 11:04:48 +00:00
2006-07-18 15:21:48 +00:00
2009-01-07 10:32:59 +00:00
2010-04-13 09:42:53 +00:00