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
›
109129a96020cb13481ce11372fbb10409cea570
Fix memory leak in meta_exec()
Bryan Drewery
committed
12 years ago
commit 109129a96020cb13481ce11372fbb10409cea570
parent
0d5aa5515d29c30aa2440d29fe305c28a39693c6
1 file changed
+1
-0
modified
libpkg/pkg_ports.c
@@ -579,6 +579,7 @@ meta_exec(struct plist *p, char *line, struct file_attr *a, bool unexec)
exec_append(p->post_install_buf, "%s\n", cmd);
}
free_file_attr(a);
+
free(cmd);
return (EPKG_OK);
}