I just found and (hopefully) worked around a bug in webkit from safari 5.1. It's a crash on ignoring a PDF in the web icon and was pretty reproducible with my test case. Hopefully this works for BD too.
Begin forwarded message: > From: [email protected] > Date: August 9, 2011 13:32:35 PDT > To: [email protected] > Subject: [fileview] r608 committed - workaround for WebKit bug in Safari 5.1 > > Revision: 608 > Author: adam.r.maxwell > Date: Tue Aug 9 13:31:44 2011 > Log: workaround for WebKit bug in Safari 5.1 > http://code.google.com/p/fileview/source/detail?r=608 > > Modified: > /trunk/fileview/FVWebViewIcon.m > > ======================================= > --- /trunk/fileview/FVWebViewIcon.m Wed Jan 5 20:42:14 2011 > +++ /trunk/fileview/FVWebViewIcon.m Tue Aug 9 13:31:44 2011 > @@ -193,7 +193,8 @@ > [_webView stopLoading:nil]; > FVAPIAssert([_webView downloadDelegate] == nil, @"downloadDelegate > non-nil"); > FVAPIAssert([_webView UIDelegate] == nil, @"UIDelegate non-nil"); > - [_webView release]; > + // autorelease instead of release to workaround > rdar://problem/9923439 (WebKit: crash when loading cancelled due to policy > delegate callout) > + [_webView autorelease]; > // may have frames if the load was cancelled? > [_redirectedFrames removeAllObjects]; > _numberOfWebViews--;
------------------------------------------------------------------------------ uberSVN's rich system and user administration capabilities and model configuration take the hassle out of deploying and managing Subversion and the tools developers use with it. Learn more about uberSVN and get a free download at: http://p.sf.net/sfu/wandisco-dev2dev
_______________________________________________ Bibdesk-develop mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/bibdesk-develop
