diff options
author | 6 <NotZed@Ximian.com> | 2001-10-17 03:44:09 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-10-17 03:44:09 +0800 |
commit | 6e9c98ceef8731142d568d851cd0736296bdde5e (patch) | |
tree | c607682361aef75b13a5911d64f46a5e48dbeedb | |
parent | 8c85ed61ba64bd548460543dd87445b9a21dbf6a (diff) | |
download | gsoc2013-evolution-6e9c98ceef8731142d568d851cd0736296bdde5e.tar gsoc2013-evolution-6e9c98ceef8731142d568d851cd0736296bdde5e.tar.gz gsoc2013-evolution-6e9c98ceef8731142d568d851cd0736296bdde5e.tar.bz2 gsoc2013-evolution-6e9c98ceef8731142d568d851cd0736296bdde5e.tar.lz gsoc2013-evolution-6e9c98ceef8731142d568d851cd0736296bdde5e.tar.xz gsoc2013-evolution-6e9c98ceef8731142d568d851cd0736296bdde5e.tar.zst gsoc2013-evolution-6e9c98ceef8731142d568d851cd0736296bdde5e.zip |
Want to check nn not in for end of list condition.
2001-10-16 <NotZed@Ximian.com>
* gal/util/e-iconv.c (flush_entry): Want to check nn not in for
end of list condition.
svn path=/trunk/; revision=13699
-rw-r--r-- | e-util/e-iconv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/e-util/e-iconv.c b/e-util/e-iconv.c index 531d23efd6..c22c9915b2 100644 --- a/e-util/e-iconv.c +++ b/e-util/e-iconv.c @@ -317,7 +317,7 @@ flush_entry(struct _iconv_cache *ic) in = (struct _iconv_cache_node *)ic->open.head; nn = in->next; - while (in) { + while (nn) { if (in->ip != (iconv_t)-1) { g_hash_table_remove(iconv_cache_open, in->ip); iconv_close(in->ip); |