summaryrefslogtreecommitdiff
path: root/package/source/zipapi/blowfishcontext.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'package/source/zipapi/blowfishcontext.cxx')
-rw-r--r--package/source/zipapi/blowfishcontext.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/source/zipapi/blowfishcontext.cxx b/package/source/zipapi/blowfishcontext.cxx
index f60f299d7bca..fd45712fce7e 100644
--- a/package/source/zipapi/blowfishcontext.cxx
+++ b/package/source/zipapi/blowfishcontext.cxx
@@ -53,7 +53,7 @@ BlowfishCFB8CipherContext::~BlowfishCFB8CipherContext()
if ( m_pCipher )
{
rtl_cipher_destroy ( m_pCipher );
- m_pCipher = NULL;
+ m_pCipher = nullptr;
}
}
@@ -100,7 +100,7 @@ uno::Sequence< ::sal_Int8 > SAL_CALL BlowfishCFB8CipherContext::finalizeCipherCo
throw lang::DisposedException();
rtl_cipher_destroy ( m_pCipher );
- m_pCipher = NULL;
+ m_pCipher = nullptr;
return uno::Sequence< sal_Int8 >();
}