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:
parent
e7a42fe615
commit
660f5b0cc5
@ -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);
|
||||
|
@ -503,6 +503,8 @@ public:
|
||||
{
|
||||
if (rsr_self && *rsr_self == this)
|
||||
*rsr_self = NULL;
|
||||
|
||||
delete rsr_status;
|
||||
}
|
||||
|
||||
void saveException(Firebird::IStatus* status, bool overwrite);
|
||||
|
Loading…
Reference in New Issue
Block a user