Fix Netflix Warnings

(This is a merge of the parts of http://go/wvgerrit/73763 that affect
the Widevine Android CDM.)

Netflix found some cases of benign shadowing & unused parameters through
having different warning settings than we do. No harm in fixing these.

Bug: 126864496
Bug: 126864495
Test: CE CDM Build
Test: Android Build
Change-Id: Ifb2a705a64071900b69aea17d6add46a36068ebb
This commit is contained in:
John W. Bruce
2019-03-05 11:40:23 -08:00
parent 50e4d67415
commit c110804133

View File

@@ -607,7 +607,7 @@ CdmResponseType CdmLicense::HandleKeyResponse(
provider_client_token_ = license.provider_client_token();
if (license.has_srm_update()) {
CdmResponseType status = crypto_session_->LoadSrm(license.srm_update());
status = crypto_session_->LoadSrm(license.srm_update());
switch (status) {
case NO_ERROR:
break;