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
›
2a0be1c251b4438ccfeff31995ef89feaece9e3c
Use sqlite3_free instead of free, this fix the rwatson's ZZZ :)
Baptiste Daroussin
committed
14 years ago
commit 2a0be1c251b4438ccfeff31995ef89feaece9e3c
parent
78d644ef7a45b5ba8360b90a4adcf49f04fc9459
1 file changed
+1
-1
modified
libpkg/pkgdb.c
@@ -1964,7 +1964,7 @@ sql_exec(sqlite3 *s, const char *sql, ...)
cleanup:
if (sqlbuf != NULL)
-
free(sqlbuf);
+
sqlite3_free(sqlbuf);
return (ret);
}