mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-22 16:18:28 -05:00
Enabled object encoding for multiple keys in MSET. Added a test for memory leaks in test-redis.tcl when running on Mac OS X
This commit is contained in:
parent
791445b745
commit
1751139117
@ -84,7 +84,6 @@ static int aeApiPoll(aeEventLoop *eventLoop, struct timeval *tvp) {
|
||||
eventLoop->fired[j].fd = e->ident;
|
||||
eventLoop->fired[j].mask = mask;
|
||||
}
|
||||
|
||||
}
|
||||
return numevents;
|
||||
}
|
||||
}
|
||||
|
1
redis.c
1
redis.c
@ -3059,6 +3059,7 @@ static void msetGenericCommand(redisClient *c, int nx) {
|
||||
for (j = 1; j < c->argc; j += 2) {
|
||||
int retval;
|
||||
|
||||
tryObjectEncoding(c->argv[j+1]);
|
||||
retval = dictAdd(c->db->dict,c->argv[j],c->argv[j+1]);
|
||||
if (retval == DICT_ERR) {
|
||||
dictReplace(c->db->dict,c->argv[j],c->argv[j+1]);
|
||||
|
@ -1092,6 +1092,14 @@ proc main {server port} {
|
||||
$r save
|
||||
} {OK}
|
||||
|
||||
catch {
|
||||
if {[string match {*Darwin*} [exec uname -a]]} {
|
||||
test {Check for memory leaks} {
|
||||
exec leaks redis-server
|
||||
} {*0 leaks*}
|
||||
}
|
||||
}
|
||||
|
||||
puts "\n[expr $::passed+$::failed] tests, $::passed passed, $::failed failed"
|
||||
if {$::failed > 0} {
|
||||
puts "\n*** WARNING!!! $::failed FAILED TESTS ***\n"
|
||||
|
Loading…
Reference in New Issue
Block a user