I was curious why the .obj plugin that parsing ascii files didn't come up on my searches for atof usage, and the reason is that the code uses sscanf for reading the files. This means that it's a bit more complicated to solve, I can't just do a search and replace...
What the code will need is either an explicit local setting in the plugin and later restore of it's value or porting the code across from using sscanf to a locally defined equivalent. I don't know the situation w.r.t thread safety of setting/restoring locale setting, as our plugins can be used in background threads it's an important area to clear up. Robert. _______________________________________________ osg-users mailing list [email protected] http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

