Disable putting buffers back in the pool until the double-free issue gets resolved

This commit is contained in:
Cameron Gutman 2013-10-30 04:32:20 -04:00
parent e5126ebe01
commit 8ba9d8cfc8

View File

@ -25,6 +25,6 @@ public class AvBufferPool {
public synchronized void free(byte[] buffer)
{
bufferList.addFirst(buffer);
//bufferList.addFirst(buffer);
}
}