| Index: crypto/hmac.cc
|
| ===================================================================
|
| --- crypto/hmac.cc (revision 170598)
|
| +++ crypto/hmac.cc (working copy)
|
| @@ -47,7 +47,7 @@
|
| size_t digest_length = DigestLength();
|
| scoped_array<unsigned char> computed_digest(
|
| new unsigned char[digest_length]);
|
| - if (!Sign(data, computed_digest.get(), static_cast<int>(digest_length)))
|
| + if (!Sign(data, computed_digest.get(), digest_length))
|
| return false;
|
|
|
| return SecureMemEqual(digest.data(), computed_digest.get(),
|
|
|