Index: xfa/fxbarcode/common/BC_CommonECI.cpp |
diff --git a/xfa/fxbarcode/common/BC_CommonECI.cpp b/xfa/fxbarcode/common/BC_CommonECI.cpp |
index 4e37aec566bd852320bb9f91a48e42909ec66c93..d8e2504acac128f0e768fd318101c36c140bbeea 100644 |
--- a/xfa/fxbarcode/common/BC_CommonECI.cpp |
+++ b/xfa/fxbarcode/common/BC_CommonECI.cpp |
@@ -34,9 +34,7 @@ int32_t CBC_CommonECI::GetValue() { |
CBC_CommonECI* CBC_CommonECI::GetEICByValue(int32_t value, int32_t& e) { |
if (value < 0 || value > 999999) { |
e = BCExceptionBadECI; |
- return NULL; |
+ return nullptr; |
} |
- if (value < 900) { |
- } |
- return NULL; |
+ return nullptr; |
} |