From a8122531ce61679fc5ee37910872e302d7bad93a Mon Sep 17 00:00:00 2001 From: kgv Date: Wed, 12 Oct 2016 12:46:48 +0300 Subject: [PATCH] 0027953: Foundation Classes - eliminate global variables from OSD_Path --- src/OSD/OSD_Path.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/OSD/OSD_Path.cxx b/src/OSD/OSD_Path.cxx index 5ceb3669b1..8bfcd28902 100644 --- a/src/OSD/OSD_Path.cxx +++ b/src/OSD/OSD_Path.cxx @@ -897,11 +897,11 @@ OSD_Path :: OSD_Path ( { Standard_Integer i, j, len; - static char __drive [ _MAX_DRIVE ]; - static char __dir [ _MAX_DIR ]; - static char __trek [ _MAX_DIR ]; - static char __fname [ _MAX_FNAME ]; - static char __ext [ _MAX_EXT ]; + char __drive [ _MAX_DRIVE ]; + char __dir [ _MAX_DIR ]; + char __trek [ _MAX_DIR ]; + char __fname [ _MAX_FNAME ]; + char __ext [ _MAX_EXT ]; memset(__drive, 0,_MAX_DRIVE); memset(__dir, 0,_MAX_DIR); @@ -1022,7 +1022,7 @@ void OSD_Path :: SystemName ( Standard_Integer i, j; TCollection_AsciiString fullPath; - static Standard_Character trek [ _MAX_PATH ]; + Standard_Character trek [ _MAX_PATH ]; Standard_Character chr; memset(trek,0,_MAX_PATH);