diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-08-28 23:11:44 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-08-28 23:11:44 +0800 |
commit | 483fe8889210cf7a0f8fc7f204cd3f1c08b237a6 (patch) | |
tree | 1e78657854a862f3329e57a4e0e0b52358325fa9 /camel/providers | |
parent | 6540f01ee0767faac3b386fa80e317456c454336 (diff) | |
download | gsoc2013-evolution-483fe8889210cf7a0f8fc7f204cd3f1c08b237a6.tar gsoc2013-evolution-483fe8889210cf7a0f8fc7f204cd3f1c08b237a6.tar.gz gsoc2013-evolution-483fe8889210cf7a0f8fc7f204cd3f1c08b237a6.tar.bz2 gsoc2013-evolution-483fe8889210cf7a0f8fc7f204cd3f1c08b237a6.tar.lz gsoc2013-evolution-483fe8889210cf7a0f8fc7f204cd3f1c08b237a6.tar.xz gsoc2013-evolution-483fe8889210cf7a0f8fc7f204cd3f1c08b237a6.tar.zst gsoc2013-evolution-483fe8889210cf7a0f8fc7f204cd3f1c08b237a6.zip |
Free()ing memory allocated through alloca() is Not A Good Thing.
svn path=/trunk/; revision=5078
Diffstat (limited to 'camel/providers')
-rw-r--r-- | camel/providers/mbox/camel-mbox-summary.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/camel/providers/mbox/camel-mbox-summary.c b/camel/providers/mbox/camel-mbox-summary.c index 2a297594d7..adfad1312d 100644 --- a/camel/providers/mbox/camel-mbox-summary.c +++ b/camel/providers/mbox/camel-mbox-summary.c @@ -659,7 +659,6 @@ camel_mbox_summary_sync(CamelMboxSummary *mbs, gboolean expunge, CamelException if (unlink(tmpname) != -1) goto retry_out; - free (tmpname); tmpname = NULL; g_warning ("Something failed (yo!)"); camel_exception_setv (ex, CAMEL_EXCEPTION_SYSTEM, |