libidn-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

CVS libidn/lib


From: libidn-commit
Subject: CVS libidn/lib
Date: Sat, 19 Mar 2005 18:54:40 +0100

Update of /home/cvs/libidn/lib
In directory dopio:/tmp/cvs-serv12187

Modified Files:
        iconvme.c 
Log Message:
Sync with libc; fix license and fix arithmetic overflow.


--- /home/cvs/libidn/lib/iconvme.c      2005/01/28 21:50:32     1.1
+++ /home/cvs/libidn/lib/iconvme.c      2005/03/19 17:54:40     1.2
@@ -1,17 +1,17 @@
 /* Recode strings between character sets, using iconv.
-   Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
+   Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or
-   modify it under the terms of the GNU General Public License as
-   published by the Free Software Foundation; either version 2, or (at
+   modify it under the terms of the GNU Lesser General Public License as
+   published by the Free Software Foundation; either version 2.1, or (at
    your option) any later version.
 
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-   GNU General Public License for more details.
+   GNU Lesser General Public License for more details.
 
-   You should have received a copy of the GNU General Public License along
+   You should have received a copy of the GNU Lesser General Public License 
along
    with this program; if not, write to the Free Software Foundation,
    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
@@ -31,15 +31,23 @@
 /* Get errno. */
 #include <errno.h>
 
+#ifdef _LIBC
+# define HAVE_ICONV 1
+#else
+/* Get strdup. */
+# include "strdup.h"
+#endif
+
 #if HAVE_ICONV
 /* Get iconv etc. */
 # include <iconv.h>
-/* Get MB_LEN_MAX. */
+/* Get MB_LEN_MAX, CHAR_BIT.  */
 # include <limits.h>
 #endif
 
-/* Get strdup. */
-#include "strdup.h"
+#ifndef SIZE_MAX
+# define SIZE_MAX ((size_t) -1)
+#endif
 
 /* Convert a zero-terminated string STR from the FROM_CODSET code set
    to the TO_CODESET code set.  The returned string is allocated using
@@ -59,10 +67,18 @@
   char *p = (char *) str;
   size_t inbytes_remaining = strlen (p);
   /* Guess the maximum length the output string can have.  */
-  size_t outbuf_size = (inbytes_remaining + 1) * MB_LEN_MAX;
-  size_t outbytes_remaining = outbuf_size - 1; /* -1 for NUL */
+  size_t outbuf_size = inbytes_remaining + 1;
+  size_t outbytes_remaining;
   size_t err;
   int have_error = 0;
+
+  /* Use a worst-case output size guess, so long as that wouldn't be
+     too large for comfort.  It's OK if the guess is wrong so long as
+     it's nonzero.  */
+  size_t approx_sqrt_SIZE_MAX = SIZE_MAX >> (sizeof (size_t) * CHAR_BIT / 2);
+  if (outbuf_size <= approx_sqrt_SIZE_MAX / MB_LEN_MAX)
+    outbuf_size *= MB_LEN_MAX;
+  outbytes_remaining = outbuf_size - 1;
 #endif
 
   if (strcmp (to_codeset, from_codeset) == 0)
@@ -70,10 +86,10 @@
 
 #if HAVE_ICONV
   cd = iconv_open (to_codeset, from_codeset);
-  if (cd == (iconv_t) - 1)
+  if (cd == (iconv_t) -1)
     return NULL;
 
-  outp = dest = malloc (outbuf_size);
+  outp = dest = (char *) malloc (outbuf_size);
   if (dest == NULL)
     goto out;
 
@@ -100,7 +116,8 @@
                have_error = 1;
                goto out;
              }
-           if (!(newdest = realloc (dest, newsize)))
+           newdest = (char *) realloc (dest, newsize);
+           if (newdest == NULL)
              {
                have_error = 1;
                goto out;





reply via email to

[Prev in Thread] Current Thread [Next in Thread]