X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fcerr.c;h=116312b11cb671cca78144eaa24754b8f4a59aeb;hb=refs%2Ftags%2Fv0.1p52;hp=d595275d4868ac40845e83cb52f23fc898ae0e84;hpb=6eb54846c27b216d7602a5107d9383f8f4324d71;p=YACASL2.git diff --git a/src/cerr.c b/src/cerr.c index d595275..116312b 100644 --- a/src/cerr.c +++ b/src/cerr.c @@ -27,19 +27,19 @@ CERRLIST *cerrlist = NULL; /** * エラーリストを作成または追加する */ -void addcerrlist(int newerrc, CERR newerrv[]) +void addcerrlist(int errc, CERR errv[]) { int i; - CERRLIST *p = NULL, *q; + CERRLIST *p = NULL, *q = malloc_chk(sizeof(CERRLIST), "cerrlist"); - assert(newerrc > 0 && newerrv != NULL); - for(i = 0; i < newerrc; i++) { + assert(errc > 0 && errv != NULL); + for(i = 0; i < errc; i++) { if(p == NULL) { - p = q = malloc_chk(sizeof(CERRLIST), "cerrlist"); + p = q; } else { p = p->next = malloc_chk(sizeof(CERRLIST), "cerrlist.next"); } - p->cerr = &newerrv[i]; + p->cerr = &errv[i]; p->next = NULL; } p->next = cerrlist; @@ -71,7 +71,7 @@ void setcerr(int num, const char *str) cerr->num = num; /* 現在のエラーメッセージを設定 */ cerr->msg = malloc_chk(CERRMSGSIZE + 1, "cerr.msg"); - if(str != NULL && strlen(str) <= CERRSTRSIZE) { + if(0 < strlen(str) && strlen(str) <= CERRSTRSIZE) { sprintf(cerr->msg, "%s: %s", str, getcerrmsg(cerr->num)); } else { strcpy(cerr->msg, getcerrmsg(cerr->num));