Tracking: fix enableBcastTrackingForPrefix() invalid sdslen() call.
Related to #7387.
This commit is contained in:
parent
1055398849
commit
784479939d
@ -102,7 +102,7 @@ void disableTracking(client *c) {
|
|||||||
/* Set the client 'c' to track the prefix 'prefix'. If the client 'c' is
|
/* Set the client 'c' to track the prefix 'prefix'. If the client 'c' is
|
||||||
* already registered for the specified prefix, no operation is performed. */
|
* already registered for the specified prefix, no operation is performed. */
|
||||||
void enableBcastTrackingForPrefix(client *c, char *prefix, size_t plen) {
|
void enableBcastTrackingForPrefix(client *c, char *prefix, size_t plen) {
|
||||||
bcastState *bs = raxFind(PrefixTable,(unsigned char*)prefix,sdslen(prefix));
|
bcastState *bs = raxFind(PrefixTable,(unsigned char*)prefix,plen);
|
||||||
/* If this is the first client subscribing to such prefix, create
|
/* If this is the first client subscribing to such prefix, create
|
||||||
* the prefix in the table. */
|
* the prefix in the table. */
|
||||||
if (bs == raxNotFound) {
|
if (bs == raxNotFound) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user