Compare commits

..

No commits in common. "89878024371d823387f7aa1d8bf5a5375c29c54d" and "33139510b92e67317b450bd29153a5fe63918000" have entirely different histories.

View file

@ -293,7 +293,6 @@ LMDBUnlock(Db *d, DbRef *r)
Stream *stream;
MDB_val key, val;
bool ret = true;
DbHint hint = r ? r->hint : 0;
if (!d || !r)
{
@ -325,7 +324,7 @@ LMDBUnlock(Db *d, DbRef *r)
{
free(val.mv_data);
}
if (ret && hint == DB_HINT_WRITE)
if (ret && r->hint == DB_HINT_WRITE)
{
pthread_mutex_unlock(&d->lock);
}