Bug 813947 - Ensure pointer argument validity. r=bsmedberg a=lsblakk

This commit is contained in:
Georg Fritzsche 2012-11-26 19:45:34 +01:00 коммит произвёл John Schoenick
Родитель 00946e5434
Коммит 5250f3285f
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -193,7 +193,11 @@ nsresult nsDocumentOpenInfo::Prepare()
NS_IMETHODIMP nsDocumentOpenInfo::OnStartRequest(nsIRequest *request, nsISupports * aCtxt)
{
LOG(("[0x%p] nsDocumentOpenInfo::OnStartRequest", this));
MOZ_ASSERT(request);
if (!request) {
return NS_ERROR_UNEXPECTED;
}
nsresult rv = NS_OK;
//