Make readVarLongInfo account for stream end

This commit is contained in:
DBotThePony 2024-02-10 21:23:55 +07:00
parent ac9a882f12
commit ffa7f0361f
Signed by: DBot
GPG Key ID: DCC23B5715498507
2 changed files with 8 additions and 1 deletions

View File

@ -4,7 +4,7 @@ kotlin.code.style=official
specifyKotlinAsDependency=false
projectGroup=ru.dbotthepony.kommons
projectVersion=2.1.3
projectVersion=2.1.5
guavaDepVersion=33.0.0
gsonDepVersion=2.8.9

View File

@ -85,6 +85,9 @@ private fun readVarLongInfo(supplier: IntSupplier): VarLongReadResult {
var read = supplier.asInt
var i = 1
if (read == -1)
throw EOFException()
while (true) {
result = (result shl 7) or (read.toLong() and 0x7F)
@ -92,6 +95,10 @@ private fun readVarLongInfo(supplier: IntSupplier): VarLongReadResult {
break
read = supplier.asInt
if (read == -1)
throw EOFException("Reached end of stream before finished reading variable length integer (read totally $i bytes)")
i++
}