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:
parent
e8997bbd95
commit
8413a813df
@ -143,7 +143,17 @@ void OSD_Environment::Build ()
|
|||||||
else {
|
else {
|
||||||
// Allocation memoire. Surtout tout la heap!
|
// Allocation memoire. Surtout tout la heap!
|
||||||
index = Ibuffer++;
|
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
|
// create a new entry in the buffer and add it to environment
|
||||||
|
Loading…
x
Reference in New Issue
Block a user