We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76b128c commit 16d1f20Copy full SHA for 16d1f20
1 file changed
src/remote/remote.h
@@ -700,7 +700,9 @@ class InternalCryptKey FB_FINAL :
700
{
701
public:
702
InternalCryptKey()
703
- : keyName(getPool())
+ : encrypt(getPool()),
704
+ decrypt(getPool()),
705
+ keyName(getPool())
706
{ }
707
708
// ICryptKey implementation
@@ -713,8 +715,8 @@ class InternalCryptKey FB_FINAL :
713
715
class Key : public Firebird::UCharBuffer
714
716
717
- Key()
- : Firebird::UCharBuffer(getPool())
718
+ Key(MemoryPool& pool)
719
+ : Firebird::UCharBuffer(pool)
720
721
722
void set(unsigned keyLength, const void* key)
0 commit comments