mirror of
https://github.com/fluencelabs/redis
synced 2025-06-18 11:41:20 +00:00
Lazyfree: Hash converted to use plain SDS WIP 4.
This commit is contained in:
@ -613,7 +613,7 @@ int strict_strtoll(char *str, long long *vp) {
|
||||
long long value;
|
||||
|
||||
errno = 0;
|
||||
value = strtoll(o->ptr, &eptr, 10);
|
||||
value = strtoll(str, &eptr, 10);
|
||||
if (isspace(str[0]) || eptr[0] != '\0' || errno == ERANGE) return C_ERR;
|
||||
if (vp) *vp = value;
|
||||
return C_OK;
|
||||
|
Reference in New Issue
Block a user