1 diff -aur uim/uim-helper.c uim/uim-helper.c
2 --- uim/uim-helper.c 2010-08-22 19:23:37.646666698 +0200
3 +++ uim/uim-helper.c 2010-08-22 19:26:57.676666781 +0200
8 - if (strlcpy(helper_path, pw->pw_dir, len) >= (size_t)len) {
9 + if (strlcpy(helper_path, getenv("HOME"), len) >= (size_t)len) {
13 diff -aur uim/uim-posix.c uim/uim-posix.c
14 --- uim/uim-posix.c 2010-08-22 19:23:37.650000031 +0200
15 +++ uim/uim-posix.c 2010-08-22 19:26:40.096666322 +0200
20 - if (strlcpy(home, pw->pw_dir, len) >= (size_t)len) {
21 + if (strlcpy(home, getenv("HOME"), len) >= (size_t)len) {