[Opal-commits] opal/src/external/tinyxml tinyxml.cpp,1.1,1.2
Status: Inactive
Brought to you by:
tylerstreeter
|
From: Olex <ole...@us...> - 2005-11-19 18:09:09
|
Update of /cvsroot/opal/opal/src/external/tinyxml In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24953/src/external/tinyxml Modified Files: tinyxml.cpp Log Message: Fixed some warnings in ODE implementation and tinyxml. Index: tinyxml.cpp =================================================================== RCS file: /cvsroot/opal/opal/src/external/tinyxml/tinyxml.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** tinyxml.cpp 24 Jun 2005 17:50:49 -0000 1.1 --- tinyxml.cpp 19 Nov 2005 18:09:01 -0000 1.2 *************** *** 124,128 **** if ( buffer ) { ! strcpy( buffer, str.c_str() ); } } --- 124,128 ---- if ( buffer ) { ! strncpy( buffer, str.c_str(), str.length() ); } } |