X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=src%2Fcerr.c;h=6b9ab402bf2415a43f28c2526129ae2187118f49;hp=d595275d4868ac40845e83cb52f23fc898ae0e84;hb=6b30a23640168f0b99e70ad87ab4c5a98015ee02;hpb=6eb54846c27b216d7602a5107d9383f8f4324d71 diff --git a/src/cerr.c b/src/cerr.c index d595275..6b9ab40 100644 --- a/src/cerr.c +++ b/src/cerr.c @@ -10,7 +10,7 @@ */ void cerr_init() { - cerr = malloc_chk(sizeof(CERR), "cerr"); + cerr = malloc_chk(sizeof(CERR *), "cerr"); cerr->num = 0; } @@ -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 = p->next = malloc_chk(sizeof(CERRLIST *), "cerrlist.next"); } - p->cerr = &newerrv[i]; + p->cerr = &errv[i]; p->next = NULL; } p->next = cerrlist;