(b []byte)
| 11 | } |
| 12 | |
| 13 | func putCopyBuf(b []byte) { |
| 14 | if len(b) != copyBufPoolSize { |
| 15 | panic("trying to put back buffer of the wrong size in the copyBufPool") |
| 16 | } |
| 17 | copyBufPool.Put((*[copyBufPoolSize]byte)(b)) |
| 18 | } |
no test coverage detected
searching dependent graphs…