Changeset 175951 in webkit
- Timestamp:
- Nov 11, 2014, 9:44:16 AM (12 years ago)
- Location:
- releases/WebKitGTK/webkit-2.6/Source/WebKit2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
releases/WebKitGTK/webkit-2.6/Source/WebKit2/ChangeLog
r175950 r175951 1 2014-11-06 Alberto Garcia <berto@igalia.com> 2 3 [GTK] [Stable] webkitgtk 2.6.1 fails to load flashplugin 4 https://bugs.webkit.org/show_bug.cgi?id=137849 5 6 Reviewed by Carlos Garcia Campos. 7 8 NPPVpluginNeedsXEmbed is a boolean value, so it should normally 9 use an NPBool (1 byte). However some plugins (the Flash player in 10 particular) are using an int instead, so we have to do it as well 11 else we'll end up corrupting the stack. 12 13 * WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp: 14 (WebKit::NetscapePlugin::platformPostInitialize): 15 1 16 2014-11-05 Alberto Garcia <berto@igalia.com> 2 17 -
releases/WebKitGTK/webkit-2.6/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp
r175950 r175951 203 203 { 204 204 uint64_t windowID = 0; 205 NPBool needsXEmbed = false; 205 // NPPVpluginNeedsXEmbed is a boolean value, but at least the 206 // Flash player plugin is using an 'int' instead. 207 int needsXEmbed = 0; 206 208 if (m_isWindowed) { 207 209 NPP_GetValue(NPPVpluginNeedsXEmbed, &needsXEmbed);
Note:
See TracChangeset
for help on using the changeset viewer.