From 06445de1975a1f19acc03dbde83df95ea7bd75ac Mon Sep 17 00:00:00 2001 From: William Casarin Date: Fri, 1 Dec 2023 17:14:16 -0800 Subject: [PATCH] nostrdb/search: make sure we break instead of return so the cursor has a chance to close Signed-off-by: William Casarin --- nostrdb/nostrdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nostrdb/nostrdb.c b/nostrdb/nostrdb.c index 93e03e66..535c619f 100644 --- a/nostrdb/nostrdb.c +++ b/nostrdb/nostrdb.c @@ -2670,7 +2670,7 @@ int ndb_text_search(struct ndb_txn *txn, const char *query, // reposition the cursor so we can continue if (mdb_cursor_get(cursor, &k, &v, MDB_SET_RANGE)) - return 0; + break; op = order_op; } else {