fix: LEAK: ByteBuf.release() was not called

This commit is contained in:
Akka 2022-05-13 14:59:05 +08:00 committed by Melledy
parent b852f384ff
commit 3c55aa64eb

View File

@ -252,6 +252,7 @@ public class GameSession extends KcpChannel {
} catch (Exception e) {
e.printStackTrace();
} finally {
data.release();
packet.release();
}
}