about summary refs log tree commit diff
path: root/posix
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@redhat.com>2010-05-05 09:59:25 -0700
committerPetr Baudis <pasky@ucw.cz>2010-05-12 03:21:23 +0200
commitb9b562e8bc985e9dd7f1cc0ef8aeb32e448e9cfa (patch)
treef014ed0181157ccb7224e059fb34c3c6352e36f7 /posix
parent50a66cf51789d82e515951a9d378bfacc0289df7 (diff)
downloadglibc-b9b562e8bc985e9dd7f1cc0ef8aeb32e448e9cfa.tar.gz
glibc-b9b562e8bc985e9dd7f1cc0ef8aeb32e448e9cfa.tar.xz
glibc-b9b562e8bc985e9dd7f1cc0ef8aeb32e448e9cfa.zip
Fix lookup of collation sequence value during regexp matching
(cherry picked from commit d84acf388ed8b3f162dda0512139095bfc268beb)
Diffstat (limited to 'posix')
-rw-r--r--posix/regexec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/posix/regexec.c b/posix/regexec.c
index 7bf0c08a78..8481b618da 100644
--- a/posix/regexec.c
+++ b/posix/regexec.c
@@ -3998,7 +3998,7 @@ find_collation_sequence_value (const unsigned char *mbs, size_t mbs_len)
 	  /* Skip the collation sequence value.  */
 	  idx += sizeof (uint32_t);
 	  /* Skip the wide char sequence of the collating element.  */
-	  idx = idx + sizeof (uint32_t) * (extra[idx] + 1);
+	  idx = idx + sizeof (uint32_t) * (*(int32_t *) (extra + idx) + 1);
 	  /* If we found the entry, return the sequence value.  */
 	  if (found)
 	    return *(uint32_t *) (extra + idx);