diff options
author | Federico Mena Quintero <federico@ximian.com> | 2001-04-03 11:17:46 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2001-04-03 11:17:46 +0800 |
commit | 508f3f4fe89abdf886a3c4047bbd7c7be6309d14 (patch) | |
tree | 3d3c2516be0fa532441f6394123d2586e6f584f0 /calendar/gui | |
parent | 784478463a5d9efdaa1c1d1d1f44abda0c0cd650 (diff) | |
download | gsoc2013-evolution-508f3f4fe89abdf886a3c4047bbd7c7be6309d14.tar gsoc2013-evolution-508f3f4fe89abdf886a3c4047bbd7c7be6309d14.tar.gz gsoc2013-evolution-508f3f4fe89abdf886a3c4047bbd7c7be6309d14.tar.bz2 gsoc2013-evolution-508f3f4fe89abdf886a3c4047bbd7c7be6309d14.tar.lz gsoc2013-evolution-508f3f4fe89abdf886a3c4047bbd7c7be6309d14.tar.xz gsoc2013-evolution-508f3f4fe89abdf886a3c4047bbd7c7be6309d14.tar.zst gsoc2013-evolution-508f3f4fe89abdf886a3c4047bbd7c7be6309d14.zip |
Plug leak.
2001-04-02 Federico Mena Quintero <federico@ximian.com>
* gui/event-editor.c (dialog_to_comp_object): Plug leak.
svn path=/trunk/; revision=9117
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/event-editor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/event-editor.c b/calendar/gui/event-editor.c index 55b3b9865a..8e3f86c92f 100644 --- a/calendar/gui/event-editor.c +++ b/calendar/gui/event-editor.c @@ -2382,7 +2382,7 @@ dialog_to_comp_object (EventEditor *ee, CalComponent *comp) cal_component_set_description_list (comp, &l); } - if (!str) + if (str) g_free (str); /* Dates */ |