Bug 236436, need to null check URL so we won't crash, r+sr=jst.

This commit is contained in:
hjtoi%comcast.net 2004-03-08 19:29:45 +00:00
Родитель 6ec57a6089
Коммит 9c4f6d3449
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -802,6 +802,8 @@ nsXMLHttpRequest::OpenRequest(const char *method,
NS_IMETHODIMP
nsXMLHttpRequest::Open(const char *method, const char *url)
{
NS_ENSURE_ARG(url);
nsresult rv;
PRBool async = PR_TRUE;
char* user = nsnull;