mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-04-13 11:41:15 +02:00
Don't allow reentrant transactions The database's transaction lock is reentrant, meaning that a thread that's already holding the lock can acquire it again. This would allow a thread that already has a transaction in progress to start another transaction, which could cause transaction isolation issues and/or lock timeouts on the database's internal locks. Check that the current thread isn't already holding the lock when starting a transaction. See merge request !127