mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
panic when trying to store a wrong-sized buffer in the buffer pool
This commit is contained in:
parent
095f32ec53
commit
f7801f095a
1 changed files with 4 additions and 0 deletions
|
@ -13,6 +13,10 @@ func getPacketBuffer() []byte {
|
|||
}
|
||||
|
||||
func putPacketBuffer(buf []byte) {
|
||||
if cap(buf) != int(protocol.MaxPacketSize) {
|
||||
println(buf)
|
||||
panic("putPacketBuffer called with packet of wrong size!")
|
||||
}
|
||||
bufferPool.Put(buf[:0])
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue