Bug 690659 - Bustage fix for clang 3.2. r=Ms2ger

This commit is contained in:
Mats Palmgren 2013-03-03 21:34:47 +01:00
Родитель 7ad4c645a5
Коммит 6541316d0a
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -83,7 +83,8 @@ nsFormData::Append(const nsAString& aName, nsIVariant* aValue)
nsCOMPtr<nsIDOMBlob> domBlob = do_QueryInterface(supports);
if (domBlob) {
Append(aName, domBlob, Optional<nsAString>());
Optional<nsAString> temp;
Append(aName, domBlob, temp);
return NS_OK;
}
}