Some interactive elements (branch dropdowns, the user menu, the clone popover) need JavaScript. Reading repositories, issues, patches, and the docs works without it; submitting forms also works as long as you can reach them via direct links.
Radish
alpha
Explore
Docs
Sign in
H
HardenedBSD-pkg
rad:z3QDZAW2FAfuLvihrhiyDC9fAD8G9
HardenedBSD Package Manager
Clone
Radicle
Git (anonymous pull)
Log in
to clone via SSH
Source
Commits
10440
Issues
Patches
Jobs
Commits
›
1aa6fc9c481ed2cd09c69931a8efdf797a991960
pkg-updating: Close DB after freeing pkgdb_it
Bryan Drewery
committed
14 years ago
commit 1aa6fc9c481ed2cd09c69931a8efdf797a991960
parent
3efd480816a6914640ae3e963a21a167fae150fd
1 file changed
+1
-1
modified
pkg/updating.c
@@ -156,8 +156,8 @@ exec_updating(int argc, char **argv)
}
fclose(fd);
cleanup:
-
pkgdb_close(db);
pkgdb_it_free(it);
+
pkgdb_close(db);
pkg_free(pkg);
return (EXIT_SUCCESS);