summary refs log tree commit diff
path: root/iconv
diff options
context:
space:
mode:
Diffstat (limited to 'iconv')
-rw-r--r--iconv/gconv_conf.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/iconv/gconv_conf.c b/iconv/gconv_conf.c
index a9b458130a..15a59072f3 100644
--- a/iconv/gconv_conf.c
+++ b/iconv/gconv_conf.c
@@ -196,7 +196,17 @@ insert_module (struct gconv_module *newp, int tobefreed)
 
 	  if (root != NULL)
 	    {
-	      /* This is a no new conversion.  */
+	      /* This is a no new conversion.  But maybe the cost is
+		 better.  */
+	      if (newp->cost_hi < root->cost_hi
+		  || (newp->cost_hi == root->cost_hi
+		      && newp->cost_lo < root->cost_lo))
+		{
+		  root->cost_hi = newp->cost_hi;
+		  root->cost_lo = newp->cost_lo;
+		  root->module_name = newp->module_name;
+		}
+
 	      if (tobefreed)
 		free (newp);
 	      return;