summaryrefslogtreecommitdiff
path: root/src/odb.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/odb.c')
-rw-r--r--src/odb.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/odb.c b/src/odb.c
index d5902840..55d434a8 100644
--- a/src/odb.c
+++ b/src/odb.c
@@ -708,6 +708,11 @@ int git_odb_open_rstream(git_odb_stream **stream, git_odb *db, const git_oid *oi
return error;
}
+void * git_odb_backend_malloc(git_odb_backend *backend, size_t len)
+{
+ return git__malloc(len);
+}
+
int git_odb__error_notfound(const char *message, const git_oid *oid)
{
if (oid != NULL) {