Index: core/src/fxcodec/codec/fx_codec.cpp |
diff --git a/core/src/fxcodec/codec/fx_codec.cpp b/core/src/fxcodec/codec/fx_codec.cpp |
index a52dd8a496fe05a33533df4468847d53af82be6e..5143f76f881b86b4e3481d8e6c4a71dbd9cfc146 100644 |
--- a/core/src/fxcodec/codec/fx_codec.cpp |
+++ b/core/src/fxcodec/codec/fx_codec.cpp |
@@ -175,7 +175,7 @@ extern "C" double FXstrtod(const char* nptr, char** endptr) { |
const char* exp_ptr = NULL; |
int e_number = 0, e_signal = 0, e_point = 0, is_negative = 0; |
int exp_ret = 0, exp_sig = 1, fra_ret = 0, fra_count = 0, fra_base = 1; |
- if (nptr == NULL) { |
+ if (!nptr) { |
return 0.0; |
} |
for (;; ptr++) { |