Bug 738535 - JS_WrapValue the FileReader's array buffer result. r=khuey

This commit is contained in:
Mark Hammond 2012-03-24 11:04:55 +11:00
Родитель a5e822709e
Коммит 5b2232acb4
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -242,6 +242,9 @@ nsDOMFileReader::GetResult(JSContext* aCx, jsval* aResult)
} else {
*aResult = JSVAL_NULL;
}
if (!JS_WrapValue(aCx, aResult)) {
return NS_ERROR_FAILURE;
}
return NS_OK;
}