Zero is a correct value.

SVN revision: 36854
This commit is contained in:
Cedric BAIL 2008-10-20 13:21:52 +00:00
parent 03114c0dac
commit 6734c580df
1 changed files with 1 additions and 1 deletions

View File

@ -443,7 +443,7 @@ eina_convert_atod(const char *src, int length, long long *m, long *e)
exponent += *str - '0';
}
if (length <= 0) goto on_length_error;
if (length < 0) goto on_length_error;
if (sign < 0)
exponent = -exponent;