Merge pull request #6 from microsoft/lgtm-issue

Address potential NPE in JfrStream#read
This commit is contained in:
David Grieve 2021-03-04 11:00:44 -08:00 коммит произвёл GitHub
Родитель 2f051d5aaf d54beda615
Коммит e4c001bb0d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 4 удалений

Просмотреть файл

@ -52,13 +52,12 @@ class JfrStream extends InputStream {
String[] signature = new String[] {long.class.getName()};
try {
buffer = (byte[]) connection.invoke(flightRecorder, "readStream", params, signature);
EOF = buffer == null;
} catch (InstanceNotFoundException | MBeanException | ReflectionException e) {
throw new java.lang.InternalError(e.getMessage(), e);
throw new IOException(e.getMessage(), e);
}
}
if (EOF) return -1;
if (EOF || (EOF = (buffer == null))) return -1;
int b = buffer[index] & 0xFF;
index = ++index % buffer.length;
@ -72,7 +71,7 @@ class JfrStream extends InputStream {
try {
connection.invoke(flightRecorder, "closeStream", params, signature);
} catch (InstanceNotFoundException | MBeanException | ReflectionException e) {
throw new java.lang.InternalError(e.getMessage(), e);
throw new IOException(e.getMessage(), e);
}
}
}