mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 843895 (Followup) - Use a dummy variable in FrozenImage::GetAnimated. r=me
This commit is contained in:
parent
095f9fa411
commit
8e35291dcd
@ -32,7 +32,8 @@ FrozenImage::DecrementAnimationConsumers()
|
||||
NS_IMETHODIMP
|
||||
FrozenImage::GetAnimated(bool* aAnimated)
|
||||
{
|
||||
nsresult rv = InnerImage()->GetAnimated(aAnimated);
|
||||
bool dummy;
|
||||
nsresult rv = InnerImage()->GetAnimated(&dummy);
|
||||
if (NS_SUCCEEDED(rv)) {
|
||||
*aAnimated = false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user