mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
24 lines
749 B
Diff
24 lines
749 B
Diff
From 6c78935344a4f086fc209d0bd77feac0ea5894b3 Mon Sep 17 00:00:00 2001
|
|
From: Lukas Slebodnik <lslebodn@fedoraproject.org>
|
|
Date: Sat, 21 Oct 2017 15:09:01 +0200
|
|
Subject: [PATCH] ldb: Fix memory leak on module context
|
|
|
|
Introduced in e8cdacc509016d9273d63faf334d9f827585c3eb
|
|
|
|
Patch-Source: https://src.fedoraproject.org/rpms/libldb/blob/f28/f/0001-ldb-Fix-memory-leak-on-module-context.patch
|
|
|
|
--- a/ldb_tdb/ldb_index.c
|
|
+++ b/ldb_tdb/ldb_index.c
|
|
@@ -516,9 +516,9 @@ static int ltdb_dn_list_store_full(struct ldb_module *module,
|
|
if (list->count == 0) {
|
|
ret = ltdb_delete_noindex(module, msg);
|
|
if (ret == LDB_ERR_NO_SUCH_OBJECT) {
|
|
- talloc_free(msg);
|
|
- return LDB_SUCCESS;
|
|
+ ret = LDB_SUCCESS;
|
|
}
|
|
+ talloc_free(msg);
|
|
return ret;
|
|
}
|
|
|