[PATCH] NLS: Invalid koi8-ru return values

From: Petr Vandrovec (vandrove@vc.cvut.cz)
Date: Tue May 07 2002 - 10:57:27 EST


Hi Linus,
  during my lurking around NLS code I found that KOI8-RU returns
character code instead of length of character for two characters.
Please apply.
                                        Petr Vandrovec
                                        vandrove@vc.cvut.cz

diff -urdN linux/fs/nls/nls_koi8-ru.c linux/fs/nls/nls_koi8-ru.c
--- linux/fs/nls/nls_koi8-ru.c Mon May 6 03:37:52 2002
+++ linux/fs/nls/nls_koi8-ru.c Tue May 7 10:02:26 2002
@@ -22,13 +22,14 @@
         if ((uni & 0xffaf) == 0x040e || (uni & 0xffce) == 0x254c) {
                 /* koi8-ru and koi8-u differ only on two characters */
                 if (uni == 0x040e)
- return 0xbe;
+ out[0] = 0xbe;
                 else if (uni == 0x045e)
- return 0xae;
+ out[0] = 0xae;
                 else if (uni == 0x255d || uni == 0x256c)
                         return 0;
                 else
                         return p_nls->uni2char(uni, out, boundlen);
+ return 1;
         }
         else
                 /* fast path */
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Tue May 07 2002 - 22:00:30 EST