Fix bug 122041 "get illegal url when having foo.html?http://norris.html"
This commit is contained in:
Родитель
b37ba45617
Коммит
5ab9ae41fe
|
@ -617,7 +617,7 @@ lm_CheckURL(JSContext *cx, const char *url_string, JSBool checkFile)
|
|||
MochaDecoder *decoder;
|
||||
|
||||
protocol = NET_ParseURL(url_string, GET_PROTOCOL_PART);
|
||||
if (!protocol || *protocol == '\0') {
|
||||
if (!protocol || *protocol == '\0' || XP_STRCHR(protocol, '?')) {
|
||||
lo_TopState *top_state;
|
||||
|
||||
obj = JS_GetGlobalObject(cx);
|
||||
|
|
Загрузка…
Ссылка в новой задаче