Changeset 39528 in webkit


Ignore:
Timestamp:
Dec 31, 2008 8:37:00 AM (15 years ago)
Author:
zecke@webkit.org
Message:

2008-12-31 Alexander V. Butenko <alex@digiqube.com>

Reviewed by Holger Freyther.

https://bugs.webkit.org/show_bug.cgi?id=22750
[gtk] webkit up to r39121 crash on image urls like
http:///sitename.com

  • platform/network/soup/ResourceHandleSoup.cpp: (WebCore::ResourceHandle::start):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r39527 r39528  
     12008-12-31  Alexander V. Butenko  <alex@digiqube.com>
     2
     3        Reviewed by Holger Freyther.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=22750
     6        [gtk] webkit up to r39121 crash on image urls like
     7        http:///sitename.com
     8
     9        * platform/network/soup/ResourceHandleSoup.cpp:
     10        (WebCore::ResourceHandle::start):
     11
    1122008-12-31  Hiroyuki Ikezoe  <poincare@ikezoe.net>
    213
  • trunk/WebCore/platform/network/soup/ResourceHandleSoup.cpp

    r39439 r39528  
    336336    if (equalIgnoringCase(protocol, "data"))
    337337        return startData(urlString);
    338     else if (equalIgnoringCase(protocol, "http") || equalIgnoringCase(protocol, "https"))
     338    else if ((equalIgnoringCase(protocol, "http") || equalIgnoringCase(protocol, "https")) && SOUP_URI_VALID_FOR_HTTP(soup_uri_new(urlString.utf8().data())))
    339339        return startHttp(urlString);
    340340    else if (equalIgnoringCase(protocol, "file") || equalIgnoringCase(protocol, "ftp") || equalIgnoringCase(protocol, "ftps"))
Note: See TracChangeset for help on using the changeset viewer.