diff options
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/quartz/salbmp.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/quartz/salbmp.cxx b/vcl/quartz/salbmp.cxx index 4cfccb04bd6f..73ead103c6fa 100644 --- a/vcl/quartz/salbmp.cxx +++ b/vcl/quartz/salbmp.cxx @@ -280,7 +280,7 @@ bool QuartzSalBitmap::AllocateUserData() catch( const std::bad_alloc& ) { OSL_FAIL( "vcl::QuartzSalBitmap::AllocateUserData: bad alloc" ); - maUserBuffer.reset( NULL ); + maUserBuffer.reset( static_cast<sal_uInt8*>(NULL) ); mnBytesPerRow = 0; } |