Fix assertion failure when command triggers PBS tunnel/bridge unreserve
In the case where the signal update buffer is not currently empty
This commit is contained in:
@@ -735,6 +735,18 @@ void UpdateSignalsInBuffer()
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Update signals in buffer if the owner could not be added to the current buffer
|
||||
* Called from 'outside'
|
||||
*/
|
||||
void UpdateSignalsInBufferIfOwnerNotAddable(Owner owner)
|
||||
{
|
||||
if (!_globset.IsEmpty() && !IsOneSignalBlock(owner, _last_owner)) {
|
||||
UpdateSignalsInBuffer(_last_owner);
|
||||
_last_owner = INVALID_OWNER; // invalidate
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Add track to signal update buffer
|
||||
|
Reference in New Issue
Block a user