Added check for null pointer when doing synchronous read. Netlib return codes are bogus.

This commit is contained in:
waterson%netscape.com 1999-03-27 00:28:08 +00:00
Родитель abc7486d75
Коммит 7adacca4f2
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -466,6 +466,9 @@ rdf_BlockingParse(nsIURL* aURL, nsIStreamListener* aConsumer)
return rv;
}
NS_ASSERTION(in != nsnull, "no input stream");
if (! in) return NS_ERROR_FAILURE;
rv = NS_ERROR_OUT_OF_MEMORY;
ProxyStream* proxy = new ProxyStream();
if (! proxy)