Bug 966385 followup to make the review comment code actually compile.

This commit is contained in:
Boris Zbarsky 2014-12-01 15:27:19 -05:00
Родитель 54af71beb8
Коммит b21414912c
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -2401,7 +2401,9 @@ GetRequestBody(nsIDOMDocument* aDoc, nsIInputStream** aResult,
nsACString& aCharset)
{
aContentType.AssignLiteral("application/xml");
aCharset = aDoc->GetDocumentCharacterSet();
nsCOMPtr<nsIDocument> doc(do_QueryInterface(aDoc));
NS_ENSURE_STATE(doc);
aCharset = doc->GetDocumentCharacterSet();
// Serialize to a stream so that the encoding used will
// match the document's.