From 556fa81fdad155abd47934691b8694a30f540f77 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Sun, 28 Jul 2002 12:52:15 +0000 Subject: [PATCH] Chagned the initiliazation of iterators, sent in by Alberto Barbati. --- src/osgPlugins/lwo/ReaderWriterLWO.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osgPlugins/lwo/ReaderWriterLWO.cpp b/src/osgPlugins/lwo/ReaderWriterLWO.cpp index 37bddc811..d5da673c9 100644 --- a/src/osgPlugins/lwo/ReaderWriterLWO.cpp +++ b/src/osgPlugins/lwo/ReaderWriterLWO.cpp @@ -89,8 +89,8 @@ struct GeometryCollection _numPrimitivesWithTexCoords(0), _numPoints(0), _texturesActive(false), - _vertices(0), - _texcoords(0), + _vertices(osg::Vec3Array::iterator()), + _texcoords(osg::Vec2Array::iterator()), _coordCount(0), _geom(0) {}