Changeset 37267 in webkit


Ignore:
Timestamp:
Oct 3, 2008 4:15:17 PM (16 years ago)
Author:
sullivan@apple.com
Message:

2008-10-03 John Sullivan <sullivan@apple.com>

Fixed Release build

  • Plugins/WebBaseNetscapePluginStream.mm: (WebNetscapePluginStream::destroyStream): added !LOG_DISABLED guard around declaration of npErr used only in LOG
Location:
trunk/WebKit/mac
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/mac/ChangeLog

    r37260 r37267  
     12008-10-03  John Sullivan  <sullivan@apple.com>
     2
     3        Fixed Release build
     4
     5        * Plugins/WebBaseNetscapePluginStream.mm:
     6        (WebNetscapePluginStream::destroyStream):
     7        added !LOG_DISABLED guard around declaration of npErr used only in LOG
     8
    192008-10-03  Anders Carlsson  <andersca@apple.com>
    210
  • trunk/WebKit/mac/Plugins/WebBaseNetscapePluginStream.mm

    r37260 r37267  
    473473        if (m_newStreamSuccessful) {
    474474            [m_pluginView.get() willCallPlugInFunction];
    475             NPError npErr = m_pluginFuncs->destroystream(m_plugin, &m_stream, m_reason);
     475#if !LOG_DISABLED
     476            NPError npErr =
     477#endif
     478            m_pluginFuncs->destroystream(m_plugin, &m_stream, m_reason);
    476479            [m_pluginView.get() didCallPlugInFunction];
    477480            LOG(Plugins, "NPP_DestroyStream responseURL=%@ error=%d", m_responseURL.get(), npErr);
Note: See TracChangeset for help on using the changeset viewer.