diff options
| author | Pieter Wuille <[email protected]> | 2012-02-11 15:25:42 +0100 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2012-02-11 15:25:42 +0100 |
| commit | 402deef944acc0bb1d063076c53be684446f9085 (patch) | |
| tree | 4ce67fbaf3a3e6c85532ba24553d07293c3b4aa6 /src/bitcoinrpc.cpp | |
| parent | Merge pull request #818 from laanwj/2012_02_win32_qtaccessible (diff) | |
| download | discoin-402deef944acc0bb1d063076c53be684446f9085.tar.xz discoin-402deef944acc0bb1d063076c53be684446f9085.zip | |
Fix #822
Diffstat (limited to 'src/bitcoinrpc.cpp')
| -rw-r--r-- | src/bitcoinrpc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 7fe8f2168..5d38f042f 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -1561,7 +1561,7 @@ void ThreadCleanWalletPassphrase(void* parg) if (nWalletUnlockTime < nMyWakeTime) nWalletUnlockTime = nMyWakeTime; } - free(parg); + delete (int*)parg; return; } |