am 84a378f2: Merge "Fix a bug in Android Keystore updateAAD." into mnc-dev

* commit '84a378f256bf7925ceb5d2c039a033d3e59b75df':
  Fix a bug in Android Keystore updateAAD.
This commit is contained in:
Alex Klyubin
2015-06-19 23:07:34 +00:00
committed by Android Git Automerger

View File

@@ -446,7 +446,7 @@ abstract class AndroidKeyStoreCipherSpiBase extends CipherSpi implements KeyStor
inputLen = input.length;
src.get(input);
}
super.engineUpdateAAD(input, inputOffset, inputLen);
engineUpdateAAD(input, inputOffset, inputLen);
}
@Override