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
›
5a59cceab0e2cc3cec66a1d74aa1941ab942726d
Fix a memleak in pkg create.
jlaffaye
committed
15 years ago
commit 5a59cceab0e2cc3cec66a1d74aa1941ab942726d
parent
5a69805d114ef1506d2a1c5751b2c02a5ed40a32
1 file changed
+2
-0
modified
libpkg/pkg.c
@@ -187,5 +187,7 @@ pkg_create(char *pkgname, pkg_formats format, const char *outdir, const char *ro
archive_write_close(pkg_archive);
archive_write_finish(pkg_archive);
}
+
+
pkgdb_free(&db);
return (0);
}