X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=ccl%2Fccltoken.c;h=14b217dca74ab171fcef25a1cd52f87225a5ee93;hb=593e3a0579cb7de6d79c1ebc665612fd9cb5bac9;hp=db6edd62a6a78abcb2e24def1f3bc6a029245422;hpb=63cafe41a93427118959a74201b3e331169a71d9;p=yaz-moved-to-github.git diff --git a/ccl/ccltoken.c b/ccl/ccltoken.c index db6edd6..14b217d 100644 --- a/ccl/ccltoken.c +++ b/ccl/ccltoken.c @@ -2,7 +2,10 @@ * Europagate, 1995 * * $Log: ccltoken.c,v $ - * Revision 1.3 1995-09-29 17:12:00 quinn + * Revision 1.4 1995-11-01 13:54:22 quinn + * Minor adjustments + * + * Revision 1.3 1995/09/29 17:12:00 quinn * Smallish * * Revision 1.2 1995/09/27 15:02:44 quinn @@ -65,13 +68,13 @@ struct ccl_token *ccl_tokenize (const char *command) } if (!first) { - first = last = malloc (sizeof (*first)); + first = last = xmalloc (sizeof (*first)); assert (first); last->prev = NULL; } else { - last->next = malloc (sizeof(*first)); + last->next = xmalloc (sizeof(*first)); assert (last->next); last->next->prev = last; last = last->next;