From 48b5f8a5444af05c460b6142b0574b789a4e7882 Mon Sep 17 00:00:00 2001 From: Daniel Black Date: Thu, 25 Feb 2021 15:44:45 +1100 Subject: mysys: lf_hash - fix l_search size_t keylen Correcting an incorrect merge from 10.2 --- mysys/lf_hash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysys/lf_hash.c b/mysys/lf_hash.c index c8d80f377e5..911d7228c0e 100644 --- a/mysys/lf_hash.c +++ b/mysys/lf_hash.c @@ -86,7 +86,7 @@ typedef struct { 1 - error (callbck returned 1) */ static int l_find(LF_SLIST **head, CHARSET_INFO *cs, uint32 hashnr, - const uchar *key, uint keylen, CURSOR *cursor, LF_PINS *pins, + const uchar *key, size_t keylen, CURSOR *cursor, LF_PINS *pins, my_hash_walk_action callback) { uint32 cur_hashnr; -- cgit v1.2.1