mirror of
https://github.com/fluencelabs/redis
synced 2025-03-26 04:11:04 +00:00
fix recursion typo in zmalloc_usable
This commit is contained in:
parent
1c95c07596
commit
780815dd6e
@ -183,7 +183,7 @@ size_t zmalloc_size(void *ptr) {
|
|||||||
return size+PREFIX_SIZE;
|
return size+PREFIX_SIZE;
|
||||||
}
|
}
|
||||||
size_t zmalloc_usable(void *ptr) {
|
size_t zmalloc_usable(void *ptr) {
|
||||||
return zmalloc_usable(ptr)-PREFIX_SIZE;
|
return zmalloc_size(ptr)-PREFIX_SIZE;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user