Changeset 83068 in webkit


Ignore:
Timestamp:
Apr 6, 2011 10:32:27 AM (13 years ago)
Author:
sergio@webkit.org
Message:

2011-04-06 Sergio Villar Senin <svillar@igalia.com>

Reviewed by Martin Robinson.

[GTK] DumpRenderTree: do not try to free NULL SoupURIs
https://bugs.webkit.org/show_bug.cgi?id=57932

Some Layout tests have invalid URIs that do not generate valid
SoupURI instances. Do not try to free those NULL SoupURIs.

  • DumpRenderTree/gtk/DumpRenderTree.cpp: (willSendRequestCallback):
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r83055 r83068  
     12011-04-06  Sergio Villar Senin  <svillar@igalia.com>
     2
     3        Reviewed by Martin Robinson.
     4
     5        [GTK] DumpRenderTree: do not try to free NULL SoupURIs
     6        https://bugs.webkit.org/show_bug.cgi?id=57932
     7
     8        Some Layout tests have invalid URIs that do not generate valid
     9        SoupURI instances. Do not try to free those NULL SoupURIs.
     10
     11        * DumpRenderTree/gtk/DumpRenderTree.cpp:
     12        (willSendRequestCallback):
     13
    1142011-04-06  Csaba Osztrogonác  <ossy@webkit.org>
    215
  • trunk/Tools/DumpRenderTree/gtk/DumpRenderTree.cpp

    r82591 r83068  
    10621062        return;
    10631063    }
    1064     soup_uri_free(uri);
    1065 
     1064    if (uri)
     1065        soup_uri_free(uri);
    10661066
    10671067    if (soupMessage) {
Note: See TracChangeset for help on using the changeset viewer.