diff options
Diffstat (limited to 'japanese/uim/files/patch-uim:uim-func.c')
-rw-r--r-- | japanese/uim/files/patch-uim:uim-func.c | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/japanese/uim/files/patch-uim:uim-func.c b/japanese/uim/files/patch-uim:uim-func.c deleted file mode 100644 index b5ed135e0e36..000000000000 --- a/japanese/uim/files/patch-uim:uim-func.c +++ /dev/null @@ -1,25 +0,0 @@ ---- uim/uim-func.c.orig Sun Aug 31 15:09:52 2003 -+++ uim/uim-func.c Sun Aug 31 15:10:19 2003 -@@ -97,15 +97,17 @@ - char * - uim_code_conv(char *str, iconv_t ic) - { -+ int len, buflen; -+ char *realbuf, *outbuf, *inbuf; - - if(!str) - return NULL; - -- int len = strlen(str); -- int buflen = len * 6+3; -- char *realbuf = alloca(buflen); -- char *outbuf = realbuf; -- char *inbuf = str; -+ len = strlen(str); -+ buflen = len * 6+3; -+ realbuf = alloca(buflen); -+ outbuf = realbuf; -+ inbuf = str; - if (!ic) { - return strdup(str); - } |