We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
I'm not sure if this change is correct: 8eefbe5#diff-36d2425cac4ec535e53cf124ae8a76ec1002823dece3982a68ed299224f6484a
(The link doesn't seem to go to the correct spot, but the issue is removing Dispose from BaseHistoryItem and SimpleHistoryItem.)
Dispose
BaseHistoryItem
SimpleHistoryItem
By removing the Dispose, old_surface doesn't get released (until the eventual finalizer runs).
old_surface
This can cause unused native memory to linger longer than necessary.
I'm not sure if this change is correct:
8eefbe5#diff-36d2425cac4ec535e53cf124ae8a76ec1002823dece3982a68ed299224f6484a
(The link doesn't seem to go to the correct spot, but the issue is removing
DisposefromBaseHistoryItemandSimpleHistoryItem.)By removing the
Dispose,old_surfacedoesn't get released (until the eventual finalizer runs).This can cause unused native memory to linger longer than necessary.