This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch, master, updated. glibc-2.10-340-gae0f0db


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  ae0f0dbd0e6205af474cd8e5d5f43ff7a7e46eec (commit)
      from  fc0c556c5f01d60b1ca465a29a38bb2f23ee1dd6 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=ae0f0dbd0e6205af474cd8e5d5f43ff7a7e46eec

commit ae0f0dbd0e6205af474cd8e5d5f43ff7a7e46eec
Author: Andreas Schwab <schwab@linux-m68k.org>
Date:   Sun Sep 20 09:42:48 2009 +0200

    Fix typo in is646 gconv module

diff --git a/ChangeLog b/ChangeLog
index 4798c3a..bdc4b4d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-09-20  Andreas Schwab  <schwab@linux-m68k.org>
+
+	* iconvdata/iso646.c (gconv_init): Correctly initialize the
+	character size elements in step data.
+
 2009-09-20  Ulrich Drepper  <drepper@redhat.com>
 
 	* po/hu.po: Update from translation team.
diff --git a/iconvdata/iso646.c b/iconvdata/iso646.c
index f388ae7..0989532 100644
--- a/iconvdata/iso646.c
+++ b/iconvdata/iso646.c
@@ -156,7 +156,7 @@ gconv_init (struct __gconv_step *step)
 	  new_data->var = var;
 	  step->__data = new_data;
 
-	  if (var == from_iso646)
+	  if (dir == from_iso646)
 	    {
 	      step->__min_needed_from = MIN_NEEDED_FROM;
 	      step->__max_needed_from = MIN_NEEDED_FROM;

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog          |    5 +++++
 iconvdata/iso646.c |    2 +-
 2 files changed, 6 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]