Changeset 122111 in webkit


Ignore:
Timestamp:
Jul 9, 2012 9:32:42 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[GTK] Memory leak in webkitwebnavigationaction.cpp
https://bugs.webkit.org/show_bug.cgi?id=90787

Patch by Sudarsana Nagineni <sudarsana.nagineni@linux.intel.com> on 2012-07-09
Reviewed by Martin Robinson.

Fixed a memory leak in WebKitWebNavigationAction.

  • webkit/webkitwebnavigationaction.cpp:

(webkit_web_navigation_action_finalize): Free the g_strdup()'d string.

Location:
trunk/Source/WebKit/gtk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/gtk/ChangeLog

    r122054 r122111  
     12012-07-09  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
     2
     3        [GTK] Memory leak in webkitwebnavigationaction.cpp
     4        https://bugs.webkit.org/show_bug.cgi?id=90787
     5
     6        Reviewed by Martin Robinson.
     7
     8        Fixed a memory leak in WebKitWebNavigationAction.
     9
     10        * webkit/webkitwebnavigationaction.cpp:
     11        (webkit_web_navigation_action_finalize): Free the g_strdup()'d string.
     12
    1132012-07-07  Zan Dobersek  <zandobersek@gmail.com>
    214
  • trunk/Source/WebKit/gtk/webkit/webkitwebnavigationaction.cpp

    r95901 r122111  
    124124
    125125    g_free(priv->originalUri);
     126    g_free(priv->targetFrame);
    126127
    127128    G_OBJECT_CLASS(webkit_web_navigation_action_parent_class)->finalize(obj);
Note: See TracChangeset for help on using the changeset viewer.