mirror of
https://github.com/fluencelabs/redis
synced 2025-03-19 00:50:50 +00:00
Merge pull request #5160 from oranagra/fix_zmalloc_usable
fix recursion typo in zmalloc_usable
This commit is contained in:
commit
ab1d5fe11a
@ -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