1998-05-13  Ulrich Drepper  <drepper@cygnus.com>

	* wcsmbs/wcsmbsload.c (extract_charset_name): Fix silly bugs in
	last addition.  Patch by wkpark@chem.skku.ac.kr.
This commit is contained in:
Ulrich Drepper 1998-05-13 16:05:28 +00:00
parent 3cb0cda8a1
commit a7c378d8cd
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
1998-05-13 Ulrich Drepper <drepper@cygnus.com>
* wcsmbs/wcsmbsload.c (extract_charset_name): Fix silly bugs in
last addition. Patch by wkpark@chem.skku.ac.kr.
1998-05-12 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* iconvdata/8bit-gap.c (BODY): Don't fall off the end of the gap

View File

@ -96,15 +96,15 @@ getfct (const char *to, const char *from)
const char *cp = str; \
char *result = NULL; \
\
while (strchr ("@._+,", *cp) == NULL) \
while (strchr ("@.+,", *cp) == NULL) \
++cp; \
if (*cp == '.') \
{ \
const char *endp = cp; \
const char *endp = ++cp; \
while (*endp != '\0' && *endp != '@') \
++endp; \
if (endp != cp) \
result = strndupa (str, endp - cp); \
result = strndupa (cp, endp - cp); \
} \
result; \
})