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
›
bd642f1dcd5668cd2b5e1b78fb73e78fe52ce109
Free the jobs before the db.
Julien Laffaye
committed
14 years ago
commit bd642f1dcd5668cd2b5e1b78fb73e78fe52ce109
parent
c20915a60bc1b000dd8d4398ddc66f121655ed6a
1 file changed
+1
-1
modified
pkg/delete.c
@@ -155,9 +155,9 @@ exec_delete(int argc, char **argv)
retcode = 0;
cleanup:
+
pkg_jobs_free(jobs);
pkgdb_it_free(it);
pkgdb_close(db);
-
pkg_jobs_free(jobs);
return (retcode);
}