sumom****@users*****
sumom****@users*****
2008年 11月 14日 (金) 13:12:12 JST
Index: julius4/julius/module.c diff -u julius4/julius/module.c:1.8 julius4/julius/module.c:1.9 --- julius4/julius/module.c:1.8 Fri Oct 17 08:43:25 2008 +++ julius4/julius/module.c Fri Nov 14 13:12:11 2008 @@ -324,6 +324,7 @@ q = p; while(*q != '\0' && *q != '\r' && *q != '\n') { if (*q < '0' || *q > '9') break; + q++; } if (*q == '\0' || *q == '\r' || *q == '\n') { /* numeric */ gid = atoi(p); @@ -358,6 +359,7 @@ q = p; while(*q != '\0' && *q != '\r' && *q != '\n') { if (*q < '0' || *q > '9') break; + q++; } if (*q == '\0' || *q == '\r' || *q == '\n') { /* numeric */ gid = atoi(p); @@ -394,6 +396,7 @@ q = p; while(*q != '\0' && *q != '\r' && *q != '\n') { if (*q < '0' || *q > '9') break; + q++; } if (*q == '\0' || *q == '\r' || *q == '\n') { /* numeric */ gid = atoi(p);