зеркало из https://github.com/mozilla/gecko-dev.git
Add obviously-needed null check. b=337889 r+sr=bzbarsky
This commit is contained in:
Родитель
6a391214f8
Коммит
f64610acf3
|
@ -187,7 +187,7 @@ public:
|
|||
URL(const URL& aOther)
|
||||
: func(aOther.func)
|
||||
, url(aOther.url)
|
||||
, next(new URL(*aOther.next))
|
||||
, next(aOther.next ? new URL(*aOther.next) : nsnull)
|
||||
{
|
||||
}
|
||||
~URL() { delete next; }
|
||||
|
|
Загрузка…
Ссылка в новой задаче