You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove redundant nested LOCK(pto->cs_inventory) in Dandelion block
The inner LOCK(pto->cs_inventory) at the Dandelion transaction processing
block was redundant because the outer scope already holds the same lock.
While CCriticalSection is a recursive mutex so this wouldn't deadlock, it
added unnecessary overhead. Remove the redundant lock and its enclosing
braces.
0 commit comments