1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0022753: Fix mismatch new/delete in Standard_Failure.cxx

This commit is contained in:
DBV 2011-11-25 13:18:14 +00:00 committed by bugmaster
parent d63f9881a0
commit d4cc0c5eb5

View File

@ -38,7 +38,7 @@ static void deallocate_message(Standard_CString aMessage)
if(aMessage) {
(*((Standard_Integer*)aMessage))--;
if(*((Standard_Integer*)aMessage)==0)
delete (Standard_PCharacter)aMessage;
delete [](Standard_PCharacter)aMessage;
}
}