зеркало из https://github.com/mozilla/gecko-dev.git
Added check for null pointer when doing synchronous read. Netlib return codes are bogus.
This commit is contained in:
Родитель
abc7486d75
Коммит
7adacca4f2
|
@ -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)
|
||||
|
|
Загрузка…
Ссылка в новой задаче