commit 4b2e47fbbea8bad01687813ff6604918e5bc3ab4 from: Stefan Sperling date: Sat Jul 03 19:49:37 2021 UTC fix memory leak in error path of load_commit_or_tag() commit - b3d68e7f99c78cbcf672100fb14310e4b4f18482 commit + 4b2e47fbbea8bad01687813ff6604918e5bc3ab4 blob - 66d89c5aedcc5401648b2b7866c1bea733341d2b blob + 7461d26208ce44417f438e825f9198e87bf5f41d --- lib/repository_admin.c +++ lib/repository_admin.c @@ -1038,6 +1038,7 @@ done: got_object_commit_close(commit); if (tag) got_object_tag_close(tag); + got_object_id_queue_free(&ids); return err; }