diff options
| author | Cory Fields <[email protected]> | 2015-01-22 15:02:44 -0500 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-03-20 12:23:44 +0100 |
| commit | d7d187e8a451ae946fa14cead7962edbe0046f12 (patch) | |
| tree | caf6765dd0a9455891f14d2df42f164b56cfba13 /src/qt/askpassphrasedialog.cpp | |
| parent | Merge pull request #5149 (diff) | |
| download | discoin-d7d187e8a451ae946fa14cead7962edbe0046f12.tar.xz discoin-d7d187e8a451ae946fa14cead7962edbe0046f12.zip | |
allocators: split allocators and pagelocker
Pagelocker is only needed for secure (usually wallet) operations, so don't make
the zero-after-free allocator depend on it.
Diffstat (limited to 'src/qt/askpassphrasedialog.cpp')
| -rw-r--r-- | src/qt/askpassphrasedialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/askpassphrasedialog.cpp b/src/qt/askpassphrasedialog.cpp index 9b7b59c0d..229139e65 100644 --- a/src/qt/askpassphrasedialog.cpp +++ b/src/qt/askpassphrasedialog.cpp @@ -8,7 +8,7 @@ #include "guiconstants.h" #include "walletmodel.h" -#include "allocators.h" +#include "support/allocators/secure.h" #include <QKeyEvent> #include <QMessageBox> |