[svn] GnuPG - r4779 - trunk/jnlib

svn author wk cvs at cvs.gnupg.org
Wed Jun 11 18:35:05 CEST 2008


Author: wk
Date: 2008-06-11 18:35:03 +0200 (Wed, 11 Jun 2008)
New Revision: 4779

Modified:
   trunk/jnlib/ChangeLog
   trunk/jnlib/utf8conv.c
Log:
Removed unused variable.


Modified: trunk/jnlib/ChangeLog
===================================================================
--- trunk/jnlib/ChangeLog	2008-06-11 08:07:54 UTC (rev 4778)
+++ trunk/jnlib/ChangeLog	2008-06-11 16:35:03 UTC (rev 4779)
@@ -1,3 +1,8 @@
+2008-06-11  Werner Koch  <wk at g10code.com>
+
+	* utf8conv.c: Remove useless variable ACTIVE_CHARSET.  Suggested
+	by Petr Uzel.
+
 2008-05-26  Werner Koch  <wk at g10code.com>
 
 	* argparse.c (usage): Make sure to print a trailing LF for usage(1).

Modified: trunk/jnlib/utf8conv.c
===================================================================
--- trunk/jnlib/utf8conv.c	2008-06-11 08:07:54 UTC (rev 4778)
+++ trunk/jnlib/utf8conv.c	2008-06-11 16:35:03 UTC (rev 4779)
@@ -1,6 +1,6 @@
 /* utf8conf.c -  UTF8 character set conversion
  * Copyright (C) 1994, 1998, 1999, 2000, 2001,
- *               2003, 2006  Free Software Foundation, Inc.
+ *               2003, 2006, 2008  Free Software Foundation, Inc.
  *
  * This file is part of JNLIB.
  *
@@ -41,7 +41,6 @@
 #endif
 
 static const char *active_charset_name = "iso-8859-1";
-static unsigned short *active_charset;
 static int no_translation;     /* Set to true if we let simply pass through. */
 static int use_iconv;          /* iconv comversion fucntions required. */
 
@@ -142,7 +141,6 @@
          default.  */
       active_charset_name = "iso-8859-1";
       no_translation = 0;
-      active_charset = NULL;
       use_iconv = 0;
     }
 }
@@ -262,7 +260,6 @@
     {
       active_charset_name = "iso-8859-1";
       no_translation = 0;
-      active_charset = NULL;
       use_iconv = 0;
     }
   else if ( !ascii_strcasecmp (newset, "utf8" )
@@ -270,7 +267,6 @@
     {
       active_charset_name = "utf-8";
       no_translation = 1;
-      active_charset = NULL;
       use_iconv = 0;
     }
   else
@@ -298,7 +294,6 @@
       iconv_close (cd);
       active_charset_name = full_newset;
       no_translation = 0;
-      active_charset = NULL; 
       use_iconv = 1;
     }
   return 0;
@@ -334,7 +329,7 @@
       /* Already utf-8 encoded. */
       buffer = jnlib_xstrdup (orig_string);
     }
-  else if (!active_charset && !use_iconv)
+  else if (!use_iconv)
     {
       /* For Latin-1 we can avoid the iconv overhead. */
       for (s = string; *s; s++)




More information about the Gnupg-commits mailing list