diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-05-04 23:35:27 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-05-04 23:35:27 +0800 |
commit | 134cba36bcb2ac48e29035eb5237a360643c7578 (patch) | |
tree | 89a4804f4f1a9f419c89e9081ce296fa89f27780 /shell/importer | |
parent | 39319663e823bd6e7dc051e8fac2f7e88f4ae6fb (diff) | |
download | gsoc2013-evolution-134cba36bcb2ac48e29035eb5237a360643c7578.tar.gz gsoc2013-evolution-134cba36bcb2ac48e29035eb5237a360643c7578.tar.zst gsoc2013-evolution-134cba36bcb2ac48e29035eb5237a360643c7578.zip |
Plug a leak (the return value from `oaf_query()' must be freed!).
svn path=/trunk/; revision=9668
Diffstat (limited to 'shell/importer')
-rw-r--r-- | shell/importer/intelligent.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/importer/intelligent.c b/shell/importer/intelligent.c index 567af0683c..166be226ad 100644 --- a/shell/importer/intelligent.c +++ b/shell/importer/intelligent.c @@ -210,6 +210,8 @@ get_intelligent_importers (void) iids_ret = g_list_prepend (iids_ret, g_strdup (info->iid)); } + CORBA_free (info_list); + return iids_ret; } |