Fixed NewChannel to pass null for new originalURL argument.

This commit is contained in:
warren%netscape.com 1999-10-26 10:37:37 +00:00
Родитель edef87131c
Коммит 6ae1735a7d
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -141,7 +141,7 @@ main(int argc, char* argv[])
nsIChannel *channel = nsnull;
// XXX NECKO verb? loadgroup? getter?
ret = service->NewChannel("load", TEST_URL, nsnull, nsnull, nsnull, &channel);
ret = service->NewChannel("load", TEST_URL, nsnull, nsnull, nsnull, nsnull, &channel);
if (NS_FAILED(ret)) return ret;
nsIEventQueue *eventQ = nsnull;