Changeset 429 for trunk/WebCore/plugins/PluginStream.cpp
- Timestamp:
- 08/04/08 12:23:14 (5 months ago)
- Files:
-
- trunk/WebCore/plugins/PluginStream.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/WebCore/plugins/PluginStream.cpp
r424 r429 461 461 return false; 462 462 463 NPBool result;463 void* result = 0; 464 464 if (m_pluginFuncs->getvalue(m_instance, NPPVpluginWantsAllNetworkStreams, &result) != NPERR_NO_ERROR) 465 465 return false; 466 466 467 return result ;468 } 469 470 } 467 return result != 0; 468 } 469 470 }
