[Webkit-unassigned] [Bug 40873] Memory Leak in FileSystemGtk

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Jun 20 18:55:25 PDT 2010


https://bugs.webkit.org/show_bug.cgi?id=40873





--- Comment #2 from makefish <openxing at hotmail.com>  2010-06-20 18:55:25 PST ---
Yes,I think the bug still exists in the latest revision,but only 1 place:
The leak place is:
200        if (!dir)
201            return entries;
should be:
    if (!dir)
    {
    if (filename != NULL)
    {
        g_free(filename);
    }
        return entries;
    }

And because you have added line 
211        g_pattern_spec_free(pspec);
GPatternSpec doesn't leak any more.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list