commit f46ee42641dd2c58c44365794546a0908a7ce329 from: Omar Polo date: Sun Aug 03 08:34:46 2025 UTC plug leak on BIO_new error path commit - b69504c4571bf1b6e75a48bc2f072a6825fb1c78 commit + f46ee42641dd2c58c44365794546a0908a7ce329 blob - 73844c2b82bfd4dffc4278ec535019ca2e956b96 blob + 547a60d7b8cd9bf024edbc1b6e869566fc4b85b3 --- gotwebd/auth.c +++ gotwebd/auth.c @@ -190,6 +190,7 @@ auth_gen_token(uint64_t uid, const char *hostname) b64 = BIO_new(BIO_f_base64()); if (b64 == NULL) { + BIO_free(bmem); free(tok); return NULL; }