Changeset 121678 in webkit


Ignore:
Timestamp:
Jul 2, 2012 7:20:03 AM (12 years ago)
Author:
rakuco@webkit.org
Message:

[EFL] Unreviewed build fix with ENABLE_NETSCAPE_PLUGIN_API after r121467.

  • plugins/efl/PluginPackageEfl.cpp:

(WebCore::PluginPackage::load): Move the declaration of `err'
before the first `goto' statement.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r121677 r121678  
     12012-07-02  Raphael Kubo da Costa  <rakuco@webkit.org>
     2
     3        [EFL] Unreviewed build fix with ENABLE_NETSCAPE_PLUGIN_API after r121467.
     4
     5        * plugins/efl/PluginPackageEfl.cpp:
     6        (WebCore::PluginPackage::load): Move the declaration of `err'
     7        before the first `goto' statement.
     8
    192012-07-02  Alexei Filippov  <alexeif@chromium.org>
    210
  • trunk/Source/WebCore/plugins/efl/PluginPackageEfl.cpp

    r121467 r121678  
    130130    m_isLoaded = true;
    131131
     132    NPError err;
     133
    132134    NP_InitializeFuncPtr initialize = reinterpret_cast<NP_InitializeFuncPtr>(eina_module_symbol_get(m_module, "NP_Initialize"));
    133135    if (!initialize) {
     
    148150
    149151#if defined(XP_UNIX)
    150     NPError err = initialize(&m_browserFuncs, &m_pluginFuncs);
     152    err = initialize(&m_browserFuncs, &m_pluginFuncs);
    151153#else
    152     NPError err = initialize(&m_browserFuncs);
     154    err = initialize(&m_browserFuncs);
    153155#endif
    154156    if (err != NPERR_NO_ERROR)
Note: See TracChangeset for help on using the changeset viewer.