From bafd2bddc77872ffce7d492f67ba241be3348d12 Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Mon, 24 Feb 2025 11:01:33 +0100 Subject: [PATCH] update the copypaste comment to say what it does now --- lib/hash_offt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/hash_offt.c b/lib/hash_offt.c index a4073813d7..2edc81af16 100644 --- a/lib/hash_offt.c +++ b/lib/hash_offt.c @@ -69,7 +69,7 @@ hash_offt_mk_entry(curl_off_t id, void *value) { struct Curl_hash_offt_entry *e; - /* allocate the struct plus memory after it to store the key */ + /* allocate the struct for the hash entry */ e = malloc(sizeof(*e)); if(e) { e->id = id;