diff options
author | saturneric <[email protected]> | 2023-12-14 12:39:48 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2023-12-14 12:39:48 +0000 |
commit | beafe53c1b8671d8e84f0546eb404597300448c7 (patch) | |
tree | f9b3e2d1f1c94c344fe3f9df919f4be2e56b4cae /src/core/function/gpg/GpgContext.h | |
parent | fix: slove some memory issues (diff) | |
download | GpgFrontend-beafe53c1b8671d8e84f0546eb404597300448c7.tar.gz GpgFrontend-beafe53c1b8671d8e84f0546eb404597300448c7.zip |
fix: slove issues on memory and add asan support for debug
Diffstat (limited to 'src/core/function/gpg/GpgContext.h')
-rw-r--r-- | src/core/function/gpg/GpgContext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/function/gpg/GpgContext.h b/src/core/function/gpg/GpgContext.h index 5f6b5b86..ead0c89b 100644 --- a/src/core/function/gpg/GpgContext.h +++ b/src/core/function/gpg/GpgContext.h @@ -73,6 +73,6 @@ class GPGFRONTEND_CORE_EXPORT GpgContext private: class Impl; - UniquePtrWithSecureDeleter<Impl> p_; + SecureUniquePtr<Impl> p_; }; } // namespace GpgFrontend |