| Index: core/src/fxge/win32/fx_win32_device.cpp
 | 
| diff --git a/core/src/fxge/win32/fx_win32_device.cpp b/core/src/fxge/win32/fx_win32_device.cpp
 | 
| index 4ca4316c2ec886499e0ed354d345ac82d29e9294..6d520468a3f8f5b102692306d08ec38483e912a2 100644
 | 
| --- a/core/src/fxge/win32/fx_win32_device.cpp
 | 
| +++ b/core/src/fxge/win32/fx_win32_device.cpp
 | 
| @@ -1186,7 +1186,7 @@ FX_BOOL CGdiDisplayDriver::StretchDIBits(const CFX_DIBSource* pSource,
 | 
|                                           int alpha_flag,
 | 
|                                           void* pIccTransform,
 | 
|                                           int blend_type) {
 | 
| -  ASSERT(pSource != NULL && pClipRect != NULL);
 | 
| +  ASSERT(pSource && pClipRect);
 | 
|    if (flags || dest_width > 10000 || dest_width < -10000 ||
 | 
|        dest_height > 10000 || dest_height < -10000) {
 | 
|      return UseFoxitStretchEngine(pSource, color, dest_left, dest_top,
 | 
| 
 |