diff options
author | Lei Zhang <thestig@chromium.org> | 2015-08-13 15:40:18 -0700 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-08-13 15:40:18 -0700 |
commit | e00660b5fa41956db06c557807b68a1117d1b70b (patch) | |
tree | e3c0bd280a2ee1d3a978d55db259724327281e21 /core | |
parent | 0434f5b8ec8de0e89714f301826e9e3bbf617fbf (diff) | |
download | pdfium-e00660b5fa41956db06c557807b68a1117d1b70b.tar.xz |
Merge to XFA: Remove if checks after new.
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1287863002 .
(cherry picked from commit 388a3b0b8d6f75d47978c08299300f121f04884c)
Review URL: https://codereview.chromium.org/1292653002 .
Diffstat (limited to 'core')
-rw-r--r-- | core/src/fxge/apple/fx_quartz_device.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/core/src/fxge/apple/fx_quartz_device.cpp b/core/src/fxge/apple/fx_quartz_device.cpp index 323b8eac3c..0407a5e612 100644 --- a/core/src/fxge/apple/fx_quartz_device.cpp +++ b/core/src/fxge/apple/fx_quartz_device.cpp @@ -93,9 +93,6 @@ FX_BOOL CQuartz2D::drawGraphicsString(void* graphics, CGContextSaveGState(context); #if CGFLOAT_IS_DOUBLE CGPoint* glyphPositionsCG = new CGPoint[charsCount]; - if (!glyphPositionsCG) { - return FALSE; - } for (int index = 0; index < charsCount; ++index) { glyphPositionsCG[index].x = glyphPositions[index].x; glyphPositionsCG[index].y = glyphPositions[index].y; @@ -908,9 +905,6 @@ void CFX_QuartzDeviceDriver::setStrokeInfo(const CFX_GraphStateData* graphState, if (graphState->m_DashCount) { #if CGFLOAT_IS_DOUBLE CGFloat* dashArray = new CGFloat[graphState->m_DashCount]; - if (!dashArray) { - return; - } for (int index = 0; index < graphState->m_DashCount; ++index) { dashArray[index] = graphState->m_DashArray[index]; } |