]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
ippool_script(): fix EVALSHA with wait (#4826)
authorMax Khon <fjoe@samodelkin.net>
Tue, 13 Dec 2022 02:25:12 +0000 (04:25 +0200)
committerGitHub <noreply@github.com>
Tue, 13 Dec 2022 02:25:12 +0000 (20:25 -0600)
src/modules/rlm_redis_ippool/rlm_redis_ippool.c

index c1fe09b40be70e58160b707d26a22d44d85c13ee..85c120c84efd8a4d887a0d8b41af5a72aa49a092 100644 (file)
@@ -578,7 +578,7 @@ static fr_redis_rcode_t ippool_script(redisReply **out, request_t *request, fr_r
        case 2: /* EVALSHA with wait */
                if (ippool_wait_check(request, wait_num, replies[1]) < 0) goto error;
                fr_redis_reply_free(&replies[1]);       /* Free the wait response */
-               break;
+               FALL_THROUGH;
 
        case 1: /* EVALSHA */
                *out = replies[0];