diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-07-18 12:32:27 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-07-18 12:32:27 +1000 |
commit | 871f1f727f0763ffec510757933f1acf22485a59 (patch) | |
tree | fe44b89a531cd517d1c5e197da4e13c2dde7d04f /sal/osl/unx/file.cxx | |
parent | 7a743b472dadb817eb7a6ed8063cee80ce7412e8 (diff) |
Followup to final followup 647382f52351a75 of my followup
Change-Id: I0ee075cadb26eb0ceedec1dd047fc157f3929dad
Diffstat (limited to 'sal/osl/unx/file.cxx')
-rw-r--r-- | sal/osl/unx/file.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/osl/unx/file.cxx b/sal/osl/unx/file.cxx index 17790211b02d..35d620813cfa 100644 --- a/sal/osl/unx/file.cxx +++ b/sal/osl/unx/file.cxx @@ -200,8 +200,8 @@ FileHandle_Impl::Allocator::~Allocator() void FileHandle_Impl::Allocator::allocate(sal_uInt8 **ppBuffer, size_t *pnSize) { - assert(ppBuffer != nullptr); - assert(pnSize != nullptr); + assert(ppBuffer); + assert(pnSize); *ppBuffer = static_cast< sal_uInt8* >(rtl_cache_alloc(m_cache)); *pnSize = m_bufsiz; } |