Skip to content

Commit

Permalink
Merge pull request #655 from dwijnand/fix-double-readEnd
Browse files Browse the repository at this point in the history
  • Loading branch information
dwijnand committed Aug 25, 2021
2 parents d0745de + 05b9abb commit 5c798e0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ object MimaUnpickler {

def readSymbol(tag: Int): SymbolInfo = {
// SymbolInfo = name_Ref owner_Ref flags_LongNat [privateWithin_Ref] info_Ref
val end = readEnd()
if (tag == NONEsym) {
buf.readIndex = readEnd()
return NoSymbol
}
val end = readEnd()
val name = readNameRef()
val owner = readSymRef()
val flags = buf.readLongNat()
Expand Down

0 comments on commit 5c798e0

Please sign in to comment.