Show
Ignore:
Timestamp:
08/04/08 12:23:14 (5 months ago)
Author:
mbensi
Message:

merge with webkit revision 35534

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/WebCore/plugins/PluginStream.cpp

    r424 r429  
    461461        return false; 
    462462 
    463     NPBool result
     463    void* result = 0
    464464    if (m_pluginFuncs->getvalue(m_instance, NPPVpluginWantsAllNetworkStreams, &result) != NPERR_NO_ERROR) 
    465465        return false; 
    466466 
    467     return result
    468 } 
    469  
    470 } 
     467    return result != 0
     468} 
     469 
     470}