diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-02-03 16:27:18 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-02-04 08:01:39 +0100 |
commit | 1e826a1e61347d9f8b40e169b63acb5a68786f59 (patch) | |
tree | e2b113b357d226d4c7a5ebf612c66cf7a9c0d7a4 /dtrans | |
parent | d7b0b2b50592aa73a0fd9ab8c696ac082dbed8c4 (diff) |
loplugin:nullptr (clang-cl)
Change-Id: I08dedd4f7af3eff1201d60704324997bf232bb2c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87888
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'dtrans')
-rw-r--r-- | dtrans/source/win32/dtobj/DOTransferable.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dtrans/source/win32/dtobj/DOTransferable.cxx b/dtrans/source/win32/dtobj/DOTransferable.cxx index c331b1d95b90..f90406462c81 100644 --- a/dtrans/source/win32/dtobj/DOTransferable.cxx +++ b/dtrans/source/win32/dtobj/DOTransferable.cxx @@ -100,7 +100,7 @@ void clipDataToByteStream( CLIPFORMAT cf, STGMEDIUM stgmedium, CDOTransferable:: aByteSequence.realloc(nMemSize); LARGE_INTEGER li; li.QuadPart = 0; - hr = pStream->Seek(li, STREAM_SEEK_SET, NULL); + hr = pStream->Seek(li, STREAM_SEEK_SET, nullptr); if (FAILED(hr)) { SAL_WARN("dtrans", "clipDataToByteStream: Seek() failed"); |