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 4a759a0 commit a43c1faCopy full SHA for a43c1fa
1 file changed
src/remote/remote.h
@@ -661,7 +661,9 @@ class InternalCryptKey FB_FINAL :
661
{
662
public:
663
InternalCryptKey()
664
- : keyName(getPool())
+ : encrypt(getPool()),
665
+ decrypt(getPool()),
666
+ keyName(getPool())
667
{ }
668
669
// ICryptKey implementation
@@ -674,8 +676,8 @@ class InternalCryptKey FB_FINAL :
674
676
class Key : public Firebird::UCharBuffer
675
677
678
- Key()
- : Firebird::UCharBuffer(getPool())
679
+ Key(MemoryPool& pool)
680
+ : Firebird::UCharBuffer(pool)
681
682
683
void set(unsigned keyLength, const void* key)
0 commit comments