| Index: components/webcrypto/jwk.cc
|
| diff --git a/components/webcrypto/jwk.cc b/components/webcrypto/jwk.cc
|
| index 326ce2b886216133f92e3b8a6167e59f5982640b..50f81bb75d8285b43efa500c7af58f3f2f0119d7 100644
|
| --- a/components/webcrypto/jwk.cc
|
| +++ b/components/webcrypto/jwk.cc
|
| @@ -353,7 +353,7 @@ JwkWriter::JwkWriter(const std::string& algorithm,
|
| const std::string& kty) {
|
| if (!algorithm.empty())
|
| dict_.SetString("alg", algorithm);
|
| - dict_.Set("key_ops", CreateJwkKeyOpsFromWebCryptoUsages(usages).release());
|
| + dict_.Set("key_ops", CreateJwkKeyOpsFromWebCryptoUsages(usages));
|
| dict_.SetBoolean("ext", extractable);
|
| dict_.SetString("kty", kty);
|
| }
|
|
|