diff options
Diffstat (limited to 'plugins/CryptoPP/src/cpp_rsam.cpp')
-rw-r--r-- | plugins/CryptoPP/src/cpp_rsam.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/CryptoPP/src/cpp_rsam.cpp b/plugins/CryptoPP/src/cpp_rsam.cpp index a356e7ad0a..2c0593bbfa 100644 --- a/plugins/CryptoPP/src/cpp_rsam.cpp +++ b/plugins/CryptoPP/src/cpp_rsam.cpp @@ -918,8 +918,8 @@ unsigned __stdcall sttConnectThread( LPVOID arg ) { if ( p->thread_exit == 1 ) return 0;
if ( p->thread_exit == 2 ) {
// мы в свободном плавании - освободим память и завершим трэд
- CloseHandle( p->thread );
- CloseHandle( p->event );
+ CloseHandle(p->thread);
+ CloseHandle(p->event);
SAFE_DELETE(p->queue);
SAFE_DELETE(p);
return 0;
|