Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2228)

Unified Diff: core/src/fxge/win32/fx_win32_gdipext.cpp

Issue 1529553003: Merge to XFA: Get rid of most instance of 'foo != NULL' (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: core/src/fxge/win32/fx_win32_gdipext.cpp
diff --git a/core/src/fxge/win32/fx_win32_gdipext.cpp b/core/src/fxge/win32/fx_win32_gdipext.cpp
index 2886ee81d0b2237b03498ea459f371b3e6172a56..e79a88cb81b98c01de9f595b4853b6b70d024416 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;

Powered by Google App Engine
This is Rietveld 408576698