Skip to content

Commit

Permalink
Merge pull request #10 from ShawnLaMountain/main
Browse files Browse the repository at this point in the history
Fixed locking issue in BaseBridge when adding
  • Loading branch information
ShawnLaMountain authored Nov 27, 2023
2 parents fccee97 + f6e7376 commit f125ec2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ThunderDesign.Net-PCL.SQLite/Bridges/BaseBridge.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public BaseBridge(ISQLiteTable<TValue> bridgeTable) : base()
}
finally
{
_ReaderWriterLockSlim.EnterUpgradeableReadLock();
_ReaderWriterLockSlim.ExitUpgradeableReadLock();
}
}

Expand Down

0 comments on commit f125ec2

Please sign in to comment.