aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-07-25 19:03:48 +0800
committerChristian Persch <chpe@src.gnome.org>2004-07-25 19:03:48 +0800
commitc108708fd68ed5d6363d02ab0408d7dcf9f5073b (patch)
tree66245fe23cb0160388ae0fb78f82a7400b558af6
parentc5c6546ff0c9b843e49b0cf50f7b690d09363142 (diff)
downloadgsoc2013-epiphany-c108708fd68ed5d6363d02ab0408d7dcf9f5073b.tar
gsoc2013-epiphany-c108708fd68ed5d6363d02ab0408d7dcf9f5073b.tar.gz
gsoc2013-epiphany-c108708fd68ed5d6363d02ab0408d7dcf9f5073b.tar.bz2
gsoc2013-epiphany-c108708fd68ed5d6363d02ab0408d7dcf9f5073b.tar.lz
gsoc2013-epiphany-c108708fd68ed5d6363d02ab0408d7dcf9f5073b.tar.xz
gsoc2013-epiphany-c108708fd68ed5d6363d02ab0408d7dcf9f5073b.tar.zst
gsoc2013-epiphany-c108708fd68ed5d6363d02ab0408d7dcf9f5073b.zip
Make sure we don't release the single observer more than
2004-07-25 Christian Persch <chpe@cvs.gnome.org> * embed/mozilla/mozilla-embed-single.cpp: Make sure we don't release the single observer more than
-rw-r--r--ChangeLog7
-rw-r--r--embed/mozilla/mozilla-embed-single.cpp1
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 8222452a5..99203cca8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2004-07-25 Christian Persch <chpe@cvs.gnome.org>
+ * embed/mozilla/mozilla-embed-single.cpp:
+
+ Make sure we don't release the single observer more than
+ once.
+
+2004-07-25 Christian Persch <chpe@cvs.gnome.org>
+
* embed/mozilla/EphyHeaderSniffer.cpp:
Disallow some more characters in the suggested filename.
diff --git a/embed/mozilla/mozilla-embed-single.cpp b/embed/mozilla/mozilla-embed-single.cpp
index d64397a4c..37aa55b79 100644
--- a/embed/mozilla/mozilla-embed-single.cpp
+++ b/embed/mozilla/mozilla-embed-single.cpp
@@ -507,6 +507,7 @@ mozilla_embed_single_dispose (GObject *object)
{
single->priv->mSingleObserver->Detach ();
NS_RELEASE (single->priv->mSingleObserver);
+ single->priv->mSingleObserver = nsnull;
}
}