am f11cc165: Merge "Fixed a possible infinite loop in JsonReader#skipValue()"
* commit 'f11cc165f4d6e18d79ce013fa2f74fb43e002ac1': Fixed a possible infinite loop in JsonReader#skipValue()
This commit is contained in:
@@ -546,6 +546,9 @@ public final class JsonReader implements Closeable {
|
||||
public void skipValue() throws IOException {
|
||||
skipping = true;
|
||||
try {
|
||||
if (!hasNext() || peek() == JsonToken.END_DOCUMENT) {
|
||||
throw new IllegalStateException("No element left to skip");
|
||||
}
|
||||
int count = 0;
|
||||
do {
|
||||
JsonToken token = advance();
|
||||
|
||||
Reference in New Issue
Block a user