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

0022954: Variable not freed upon realloc failure

This commit is contained in:
dbv 2012-03-07 14:34:51 +04:00 committed by bugmaster
parent e8997bbd95
commit 8413a813df

View File

@ -143,7 +143,17 @@ void OSD_Environment::Build ()
else {
// Allocation memoire. Surtout tout la heap!
index = Ibuffer++;
buffer = (char **) realloc ( buffer, Ibuffer * sizeof(char*) );
char **aTmp;
aTmp = (char **) realloc ( buffer, Ibuffer * sizeof(char*) );
if (aTmp)
{
buffer = aTmp;
}
else
{
myError.SetValue(errno, Iam, "Memory realloc failure");
return;
}
}
// create a new entry in the buffer and add it to environment