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

0023694: The variable 'pBuff" is being used without being initialized

pBuff initialized by zero
This commit is contained in:
abv 2013-02-27 15:25:57 +04:00
parent aa2f78c2de
commit 5788f5438f

View File

@ -275,7 +275,7 @@ void OSD_Environment :: SetValue ( const TCollection_AsciiString& Value ) {
TCollection_AsciiString OSD_Environment :: Value () {
Standard_PCharacter pBuff;
Standard_PCharacter pBuff=0;
DWORD dwSize = 0;
char* envVal = NULL;