Submitted by Silvermist, also found by zhaojohnson, nslavchev, Testerbot, devival, and prapandey031
There is a functionality for disabling a pool in case of unforeseen circumstances or if a problem occurs. While the pool is disabled the users should not be able to do certain actions but removing their liquidity should not be one of them.
When a problem occurs in the pool, users should be able to remove their liquidity, as it may be at risk and they may lose their money. The problem is there is a check that does not allow them to do it.
update_position_internal has a comment that states Requires the pool to be enabled unless removing liquidity., meaning that there should be a check for the pool status only when liquidity is added and the users should be allowed to remove their liquidity if the pool is not active.
But update_position_internal calls update_position that is used to add or remove liquidity from a position and the function has this check:
The check above prevents the function from being called when the pool is disabled, which is understandable in case users want to add liquidity to the pool when there is a problem.
However, users dont want their money to be at risk and they would want to remove their funds but they cant because of that check.
If the passed delta is negative, it means the user is removing liquidity, so check the pools status only when the delta is positive.
Access Control
af-afk (Superposition) confirmed 
0xsomeone (judge) commented:
