* page/Frame.cpp:
(WebCore::Frame::finishedParsing):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@16955
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-10-09 Adam Roben <aroben@apple.com>
+
+ Backing out accidental commit.
+
+ * page/Frame.cpp:
+ (WebCore::Frame::finishedParsing):
+
2006-10-09 Adam Roben <aroben@apple.com>
Reviewed by Darin.
{
// This method can be called from our destructor, in which case we shouldn't protect ourselves
// because doing so will cause us to re-enter our destructor when protector goes out of scope.
- RefPtr<Frame> protector = this;
+ RefPtr<Frame> protector = refCount() > 0 ? this : 0;
checkCompleted();
if (!d->m_view)