diff options
author | Larry Ewing <lewing@ximian.com> | 2003-06-11 08:22:02 +0800 |
---|---|---|
committer | Larry Ewing <lewing@src.gnome.org> | 2003-06-11 08:22:02 +0800 |
commit | 12f37471147fae02253c241c6e5c475015e9221a (patch) | |
tree | 5493e35369d83e1194231889df8336033ba769f6 /shell | |
parent | eb2dd4c67d26205f285d351b50ce0609a7f290c8 (diff) | |
download | gsoc2013-evolution-12f37471147fae02253c241c6e5c475015e9221a.tar gsoc2013-evolution-12f37471147fae02253c241c6e5c475015e9221a.tar.gz gsoc2013-evolution-12f37471147fae02253c241c6e5c475015e9221a.tar.bz2 gsoc2013-evolution-12f37471147fae02253c241c6e5c475015e9221a.tar.lz gsoc2013-evolution-12f37471147fae02253c241c6e5c475015e9221a.tar.xz gsoc2013-evolution-12f37471147fae02253c241c6e5c475015e9221a.tar.zst gsoc2013-evolution-12f37471147fae02253c241c6e5c475015e9221a.zip |
don't leak nr.name.
2003-06-10 Larry Ewing <lewing@ximian.com>
* e-corba-storage-registry.c (listener_notify): don't leak nr.name.
svn path=/trunk/; revision=21399
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 4 | ||||
-rw-r--r-- | shell/e-corba-storage-registry.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index e69de29bb2..01d8f1fa42 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -0,0 +1,4 @@ +2003-06-10 Larry Ewing <lewing@ximian.com> + + * e-corba-storage-registry.c (listener_notify): don't leak nr.name. + diff --git a/shell/e-corba-storage-registry.c b/shell/e-corba-storage-registry.c index 83f58c7079..c774d94326 100644 --- a/shell/e-corba-storage-registry.c +++ b/shell/e-corba-storage-registry.c @@ -74,6 +74,7 @@ listener_notify (Bonobo_Listener listener, } CORBA_exception_free (&ev); + CORBA_free (nr.name); } static GNOME_Evolution_StorageListener |