diff options
author | saturneric <[email protected]> | 2023-12-16 05:53:03 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2023-12-16 05:53:03 +0000 |
commit | 37215a895a649345165027971690dfdcd9106a32 (patch) | |
tree | 7a3da4e2d59ba75b43c9927fe7a98c9b6dec5ec6 /src/core/thread/TaskRunner.cpp | |
parent | fix: slove memory problem of gpg context (diff) | |
download | GpgFrontend-37215a895a649345165027971690dfdcd9106a32.tar.gz GpgFrontend-37215a895a649345165027971690dfdcd9106a32.zip |
fix: use secure memory management at impl class
Diffstat (limited to 'src/core/thread/TaskRunner.cpp')
-rw-r--r-- | src/core/thread/TaskRunner.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/thread/TaskRunner.cpp b/src/core/thread/TaskRunner.cpp index 88913bc4..a4a97b38 100644 --- a/src/core/thread/TaskRunner.cpp +++ b/src/core/thread/TaskRunner.cpp @@ -84,7 +84,8 @@ class TaskRunner::Impl : public QThread { } }; -GpgFrontend::Thread::TaskRunner::TaskRunner() : p_(std::make_unique<Impl>()) {} +GpgFrontend::Thread::TaskRunner::TaskRunner() + : p_(SecureCreateUniqueObject<Impl>()) {} GpgFrontend::Thread::TaskRunner::~TaskRunner() { if (p_->isRunning()) { |