panic when trying to store a wrong-sized buffer in the buffer pool

This commit is contained in:
Lucas Clemente 2016-08-05 11:28:44 +02:00
parent 095f32ec53
commit f7801f095a

View file

@ -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])
}