Radish alpha
H
HardenedBSD Package Manager
Radicle
Git (anonymous pull)
Log in to clone via SSH
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);
}