From 05cd6878a5e48e5ba7a83084911a22116baf7a7e Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 21 Nov 2008 12:10:27 +0000 Subject: [PATCH] From Jason Beverage, "The _pluginData member variable is not properly copied when using the copy constructor for ReaderWriter::Options." --- include/osgDB/ReaderWriter | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/osgDB/ReaderWriter b/include/osgDB/ReaderWriter index 8f8d8f7e4..237d74298 100644 --- a/include/osgDB/ReaderWriter +++ b/include/osgDB/ReaderWriter @@ -124,7 +124,8 @@ class OSGDB_EXPORT ReaderWriter : public osg::Object _str(options._str), _databasePaths(options._databasePaths), _objectCacheHint(options._objectCacheHint), - _buildKdTreesHint(options._buildKdTreesHint) {} + _buildKdTreesHint(options._buildKdTreesHint), + _pluginData(options._pluginData){} META_Object(osgDB,Options);