Merge pull request #162 from meziantou/nre-CssOriginValue

Fix nullable reference exception in CssOriginValue
This commit is contained in:
Florian Rappl 2024-02-26 17:28:00 +01:00 коммит произвёл GitHub
Родитель c1c83ee457 e68db8f36a
Коммит 102cc320ee
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 11 добавлений и 4 удалений

Просмотреть файл

@ -2,6 +2,7 @@ namespace AngleSharp.Css.Values
{
using AngleSharp.Css.Dom;
using System;
using System.Collections.Generic;
/// <summary>
/// Represents a CSS origin definition.
@ -73,14 +74,20 @@ namespace AngleSharp.Css.Values
/// <returns>True if both are equal, otherwise false.</returns>
public Boolean Equals(CssOriginValue other)
{
return _x.Equals(other._x) && _y.Equals(other._y) && _z.Equals(other._z);
if (other is not null)
{
var comparer = EqualityComparer<ICssValue>.Default;
return comparer.Equals(_x, other._x) && comparer.Equals(_y, other._y) && comparer.Equals(_z, other._z);
}
return false;
}
ICssValue ICssValue.Compute(ICssComputeContext context)
{
var x = _x.Compute(context);
var y = _y.Compute(context);
var z = _z.Compute(context);
var x = _x?.Compute(context);
var y = _y?.Compute(context);
var z = _z?.Compute(context);
if (x != _x || y != _y || z != _z)
{