Changeset 97304 in webkit
- Timestamp:
- Oct 12, 2011, 2:34:38 PM (15 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/Plugins/mac/PluginProcessProxyMac.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r97263 r97304 1 2011-10-12 Dan Bernstein <mitz@apple.com> 2 3 Hang beneath PluginProcessProxy::createPropertyListFile() when using a thin build 4 https://bugs.webkit.org/show_bug.cgi?id=69960 5 6 Reviewed by Adam Roben. 7 8 * UIProcess/Plugins/mac/PluginProcessProxyMac.mm: 9 (WebKit::PluginProcessProxy::createPropertyListFile): Check for any non-zero return value 10 from posix_spawn() rather than for a negative return value. The old, incorrect check, caused 11 this function to hang in waitpid() after failing to spawn a plug-in process for a 32-bit plug-in 12 when WebKit2 was built for 64-bit only. 13 1 14 2011-10-12 Jesus Sanchez-Palencia <jesus.palencia@openbossa.org> 2 15 -
trunk/Source/WebKit2/UIProcess/Plugins/mac/PluginProcessProxyMac.mm
r95901 r97304 98 98 posix_spawnattr_destroy(&attr); 99 99 100 if (result < 0)100 if (result) 101 101 return false; 102 102 int status;
Note:
See TracChangeset
for help on using the changeset viewer.