--- trunk/1.6.x/ccs-patch/fs/tomoyo_domain.c 2008/10/20 05:56:25 1721 +++ trunk/1.6.x/ccs-patch/fs/tomoyo_domain.c 2008/10/24 04:07:03 1747 @@ -1280,7 +1280,10 @@ unsigned char c; unsigned char d; unsigned char e; - while ((c = *src++) != '\0') { + while (1) { + c = *src++; + if (!c) + break; if (c != '\\') { *dest++ = c; continue;