Index: fpdfsdk/src/fxedit/fxet_module.cpp |
diff --git a/fpdfsdk/src/fxedit/fxet_module.cpp b/fpdfsdk/src/fxedit/fxet_module.cpp |
index 12f2c86e033b4b46c97d86955d8174e30426527a..553cf3a62fbc110b9ac6e676e05a736e2ce2d0c6 100644 |
--- a/fpdfsdk/src/fxedit/fxet_module.cpp |
+++ b/fpdfsdk/src/fxedit/fxet_module.cpp |
@@ -19,8 +19,6 @@ IFX_Edit* IFX_Edit::NewEdit() { |
} |
void IFX_Edit::DelEdit(IFX_Edit* pEdit) { |
- ASSERT(pEdit != NULL); |
- |
IPDF_VariableText::DelVariableText(pEdit->GetVariableText()); |
delete (CFX_Edit*)pEdit; |
@@ -33,7 +31,6 @@ IFX_List* IFX_List::NewList() { |
} |
void IFX_List::DelList(IFX_List* pList) { |
- ASSERT(pList != NULL); |
- |
+ ASSERT(pList); |
delete (CFX_ListCtrl*)pList; |
} |