Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(622)

Unified Diff: packages/crypto/lib/src/md5.dart

Issue 3015713002: Roll to pickup pool changes
Patch Set: Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « packages/crypto/lib/src/hmac.dart ('k') | packages/crypto/pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/crypto/lib/src/md5.dart
diff --git a/packages/crypto/lib/src/md5.dart b/packages/crypto/lib/src/md5.dart
index f666ef14207c9fbb988c70ddbe0b239e279c524a..2729c5c968c280acec889b10b00f9a219d4344b3 100644
--- a/packages/crypto/lib/src/md5.dart
+++ b/packages/crypto/lib/src/md5.dart
@@ -89,8 +89,8 @@ class _MD5Sink extends HashSink {
var c = digest[2];
var d = digest[3];
- var e;
- var f;
+ int e;
+ int f;
for (var i = 0; i < 64; i++) {
if (i < 16) {
« no previous file with comments | « packages/crypto/lib/src/hmac.dart ('k') | packages/crypto/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698