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
›
daa064d9c3a152db97e0fd7c85abf8476c0ab98b
Reset also the sqlite stmt when reseting the db iterator
Marin Atanasov Nikolov
committed
13 years ago
commit daa064d9c3a152db97e0fd7c85abf8476c0ab98b
parent
090dcfeed97ae79edb0a84a6c1f8dab0a55a990f
1 file changed
+1
-0
modified
libpkg/pkgdb.c
@@ -1343,6 +1343,7 @@ pkgdb_it_reset(struct pkgdb_it *it)
return;
it->finished = 0;
+
sqlite3_reset(it->stmt);
}
void