Commit e9eb2e67 authored by estade's avatar estade Committed by Commit bot

Fix crash on Linux caused by null deref

(caused by 423d45cb)

BUG=481754

Review URL: https://codereview.chromium.org/1108173003

Cr-Commit-Position: refs/heads/master@{#327228}
parent 79b525b0
...@@ -109,7 +109,8 @@ void CardUnmaskPromptViews::GotVerificationResult( ...@@ -109,7 +109,8 @@ void CardUnmaskPromptViews::GotVerificationResult(
// TODO(estade): it's somewhat jarring when the error comes back too // TODO(estade): it's somewhat jarring when the error comes back too
// quickly. // quickly.
overlay_animation_.Reset(); overlay_animation_.Reset();
storage_row_->SetAlpha(255); if (storage_row_)
storage_row_->SetAlpha(255);
progress_overlay_->SetVisible(false); progress_overlay_->SetVisible(false);
if (allow_retry) { if (allow_retry) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment