commit 3052a7cc535870873df18d6f9bbe5a5dbf304bfc
parent a3915f898309cf07c5188347ae2492674bc70d46
Author: William Casarin <jb55@jb55.com>
Date: Fri, 1 Dec 2023 17:14:16 -0800
search: make sure we break instead of return
so the cursor has a chance to close
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/nostrdb.c b/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 {