1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0023280: Pointer to local array is stored outside the scope of this array.

Moved the array 'buff' so it can be visible while 'str' still refers to it.
This commit is contained in:
Pawel 2012-07-13 16:29:20 +02:00 committed by Pawel Kowalski
parent 8418c61723
commit abd9003d5f

View File

@ -100,10 +100,10 @@ Standard_Boolean OSD_Real2String::CStringToReal(const Standard_CString theString
const char *str = theString; const char *str = theString;
char buff[1024];
if (myReadDecimalPoint) { if (myReadDecimalPoint) {
if (myReadDecimalPoint != myLocalDecimalPoint) { if (myReadDecimalPoint != myLocalDecimalPoint) {
const char * p; const char * p;
char buff[1024];
// replace the decimal point by the local one // replace the decimal point by the local one
if(myReadDecimalPoint != myLocalDecimalPoint && if(myReadDecimalPoint != myLocalDecimalPoint &&
(p = strchr(theString,myReadDecimalPoint))&& ((p-theString) < 1000) ) (p = strchr(theString,myReadDecimalPoint))&& ((p-theString) < 1000) )