From af975d63f67e6cc2d17f1804acb66328905f8701 Mon Sep 17 00:00:00 2001 From: amelia squires Date: Mon, 21 Apr 2025 20:43:51 -0500 Subject: better version support, fixes, and memory saftey --- src/hash/pjw.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/hash/pjw.c') diff --git a/src/hash/pjw.c b/src/hash/pjw.c index 7d37275..188030f 100644 --- a/src/hash/pjw.c +++ b/src/hash/pjw.c @@ -7,6 +7,10 @@ struct pjw_hash pjw_init(){ return (struct pjw_hash){.hash = 0, .high = 0}; } +int pjw_free_l(lua_State* L){ + return 0; +} + void pjw_update(uint8_t* in, size_t len, struct pjw_hash* hash){ for(int i = 0; i != len; i++){ hash->hash = (hash->hash << 4) + *in++; -- cgit v1.2.3