Commit e374573f authored by Itamar Haber's avatar Itamar Haber Committed by antirez
Browse files

Fixes segfault on calling trackingGetTotalKeys

... with CSC disabled
parent 73d47d57
......@@ -441,5 +441,6 @@ uint64_t trackingGetTotalItems(void) {
}
uint64_t trackingGetTotalKeys(void) {
if (TrackingTable == NULL) return 0;
return raxSize(TrackingTable);
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment