Bug 1634170 - clear crypto info before reusing recycled sample. r=geckoview-reviewers,esawin

Differential Revision: https://phabricator.services.mozilla.com/D73989
This commit is contained in:
John Lin 2020-05-06 12:00:22 +00:00
Родитель b498c75baa
Коммит b873d056bc
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -52,6 +52,7 @@ public final class Sample implements Parcelable {
private void readCrypto(final Parcel in) {
int hasCryptoInfo = in.readInt();
if (hasCryptoInfo == 0) {
cryptoInfo = null;
return;
}