8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 04:43:03 +01:00

More memory leaks (CORE-4683)

This commit is contained in:
hvlad 2015-02-20 09:38:40 +00:00
parent e7a42fe615
commit 660f5b0cc5
2 changed files with 8 additions and 0 deletions

View File

@ -92,6 +92,12 @@ public:
: en(NULL), de(NULL)
{ }
~Arc4()
{
delete en;
delete de;
}
// ICryptPlugin implementation
const char* getKnownTypes(CheckStatusWrapper* status);
void setKey(CheckStatusWrapper* status, ICryptKey* key);

View File

@ -503,6 +503,8 @@ public:
{
if (rsr_self && *rsr_self == this)
*rsr_self = NULL;
delete rsr_status;
}
void saveException(Firebird::IStatus* status, bool overwrite);