summaryrefslogtreecommitdiff
path: root/core/src/fxge/win32/fx_win32_gdipext.cpp
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2015-12-14 18:27:25 -0800
committerLei Zhang <thestig@chromium.org>2015-12-14 18:27:25 -0800
commit96660d6f382204339d6b1aadc3913303d436e252 (patch)
treeb5f84756e1a89251831cebc05b9d4e1f6cb2027b /core/src/fxge/win32/fx_win32_gdipext.cpp
parentd983b09c3ae29a97cba8e9ec9c6351545f6087ee (diff)
downloadpdfium-96660d6f382204339d6b1aadc3913303d436e252.tar.xz
Merge to XFA: Get rid of most instance of 'foo != NULL'
TBR=tsepez@chromium.org Review URL: https://codereview.chromium.org/1512763013 . (cherry picked from commit e3c7c2b54348da4a6939f6672f6c6bff126815a7) Review URL: https://codereview.chromium.org/1529553003 .
Diffstat (limited to 'core/src/fxge/win32/fx_win32_gdipext.cpp')
-rw-r--r--core/src/fxge/win32/fx_win32_gdipext.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/core/src/fxge/win32/fx_win32_gdipext.cpp b/core/src/fxge/win32/fx_win32_gdipext.cpp
index 2886ee81d0..e79a88cb81 100644
--- a/core/src/fxge/win32/fx_win32_gdipext.cpp
+++ b/core/src/fxge/win32/fx_win32_gdipext.cpp
@@ -1295,7 +1295,7 @@ class GpStream final : public IStream {
ULONG* pcbRead) {
size_t bytes_left;
size_t bytes_out;
- if (pcbRead != NULL) {
+ if (pcbRead) {
*pcbRead = 0;
}
if (m_ReadPos == m_InterStream.GetLength()) {
@@ -1305,7 +1305,7 @@ class GpStream final : public IStream {
bytes_out = FX_MIN(cb, bytes_left);
FXSYS_memcpy(Output, m_InterStream.GetBuffer() + m_ReadPos, bytes_out);
m_ReadPos += (int32_t)bytes_out;
- if (pcbRead != NULL) {
+ if (pcbRead) {
*pcbRead = (ULONG)bytes_out;
}
return S_OK;
@@ -1314,13 +1314,13 @@ class GpStream final : public IStream {
ULONG cb,
ULONG* pcbWritten) {
if (cb <= 0) {
- if (pcbWritten != NULL) {
+ if (pcbWritten) {
*pcbWritten = 0;
}
return S_OK;
}
m_InterStream.InsertBlock(m_InterStream.GetLength(), Input, cb);
- if (pcbWritten != NULL) {
+ if (pcbWritten) {
*pcbWritten = cb;
}
return S_OK;
@@ -1374,7 +1374,7 @@ class GpStream final : public IStream {
return STG_E_SEEKERROR;
}
m_ReadPos = new_read_position;
- if (lpNewFilePointer != NULL) {
+ if (lpNewFilePointer) {
lpNewFilePointer->QuadPart = m_ReadPos;
}
return S_OK;