1
0
mirror of git://jb55.com/damus synced 2024-09-29 16:30:44 +00:00

Revert "lmdb: fix weird crash in lmdb. need to follow up upstream"

This reverts commit 4686b7aca6.
This commit is contained in:
William Casarin 2024-01-26 11:59:44 -08:00
parent 6731471c17
commit d3c75ce42b

View File

@ -171,9 +171,6 @@ int mdb_midl_append( MDB_IDL *idp, MDB_ID id )
int mdb_midl_append_list( MDB_IDL *idp, MDB_IDL app )
{
MDB_IDL ids = *idp;
if (ids == 0)
return EINVAL;
/* Too big? */
if (ids[0] + app[0] >= ids[-1]) {