Changeset 85854 in webkit


Ignore:
Timestamp:
May 5, 2011 8:40:18 AM (13 years ago)
Author:
Carlos Garcia Campos
Message:

2011-05-05 Carlos Garcia Campos <cgarcia@igalia.com>

Reviewed by Martin Robinson.

[GTK] Module::load() should return true when g_module_open() returns a valid pointer
https://bugs.webkit.org/show_bug.cgi?id=60261

  • Platform/gtk/ModuleGtk.cpp: (WebKit::Module::load):
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r85841 r85854  
     12011-05-05  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        Reviewed by Martin Robinson.
     4
     5        [GTK] Module::load() should return true when g_module_open() returns a valid pointer
     6        https://bugs.webkit.org/show_bug.cgi?id=60261
     7
     8        * Platform/gtk/ModuleGtk.cpp:
     9        (WebKit::Module::load):
     10
    1112011-05-05  Carlos Garcia Campos  <cgarcia@igalia.com>
    212
  • trunk/Source/WebKit2/Platform/gtk/ModuleGtk.cpp

    r78074 r85854  
    3737{
    3838    m_handle = g_module_open(m_path.utf8().data(), G_MODULE_BIND_LAZY);
    39     return !m_handle;
     39    return m_handle;
    4040}
    4141
Note: See TracChangeset for help on using the changeset viewer.