| Index: crypto/hmac_openssl.cc
|
| diff --git a/crypto/hmac_openssl.cc b/crypto/hmac_openssl.cc
|
| index 46bfbaefbeff7acdcf1fcbc2c925ed1a77d93e64..7c666d95debda91cf848731f7e636e15c05f53fd 100644
|
| --- a/crypto/hmac_openssl.cc
|
| +++ b/crypto/hmac_openssl.cc
|
| @@ -58,7 +58,7 @@ bool HMAC::Sign(const base::StringPiece& data,
|
| &plat_->key[0], plat_->key.size(),
|
| reinterpret_cast<const unsigned char*>(data.data()),
|
| data.size(),
|
| - result.safe_buffer(), NULL);
|
| + result.safe_buffer(), NULL) != NULL;
|
| }
|
|
|
| } // namespace crypto
|
|
|