Add obviously-needed null check. b=337889 r+sr=bzbarsky

This commit is contained in:
dbaron%dbaron.org 2006-10-06 05:29:44 +00:00
Родитель 6a391214f8
Коммит f64610acf3
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -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; }