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
It is possible for AVPs to be overwritten or their memory dropped while still being processed, if the underlying readerBuffer is reused or the underlying sync.Pool removes it respectively. This is because for some avp datatypes are references into the original buffer, and the original buffer is reset and put back into the readerBufferPool right after the message is decoded [ref].
Affected datatypes are:
Address
Grouped
Ipv4
Ipv6
Unknown
Quick fix would be just to copy out of the original read buffers for these types
The text was updated successfully, but these errors were encountered:
It is possible for AVPs to be overwritten or their memory dropped while still being processed, if the underlying readerBuffer is reused or the underlying sync.Pool removes it respectively. This is because for some avp datatypes are references into the original buffer, and the original buffer is reset and put back into the readerBufferPool right after the message is decoded [ref].
Affected datatypes are:
Quick fix would be just to copy out of the original read buffers for these types
The text was updated successfully, but these errors were encountered: