diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:21:55 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:31:35 +0100 |
commit | 26f05d59bc1c25b8a0d19be7f4738fd12e557001 (patch) | |
tree | 560cccfaacf4b63385aa52ac4b3912248e87cbef /include/osl/security.hxx | |
parent | 5bbdb9423e15b68438bb8397c15635e044129e28 (diff) |
loplugin:nullptr (automatic rewrite)
Change-Id: I1bc6c87fcd6e5e96362623be94c59be216a3b2b8
Diffstat (limited to 'include/osl/security.hxx')
-rw-r--r-- | include/osl/security.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/osl/security.hxx b/include/osl/security.hxx index 6f7b24819c5d..4d94ee10e308 100644 --- a/include/osl/security.hxx +++ b/include/osl/security.hxx @@ -41,7 +41,7 @@ inline bool Security::logonUser(const rtl::OUString& strName, { osl_freeSecurityHandle(m_handle); - m_handle = 0; + m_handle = NULL; return (osl_loginUser( strName.pData, strPasswd.pData, &m_handle) == osl_Security_E_None); |