X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/halibut/blobdiff_plain/f15300499bce37cd28ea2ace0f2bd1c364fc835e..8f664e7e91c918cd13248f6b684580c4dd2cdb31:/malloc.c diff --git a/malloc.c b/malloc.c index 6612fef..4389d8a 100644 --- a/malloc.c +++ b/malloc.c @@ -91,7 +91,7 @@ void *(srealloc)(LOGPARAMS void *p, int size) { * dupstr is like strdup, but with the never-return-NULL property * of smalloc (and also reliably defined in all environments :-) */ -char *dupstr(char *s) { +char *dupstr(char const *s) { char *r = smalloc(1+strlen(s)); strcpy(r,s); return r; @@ -101,7 +101,7 @@ char *dupstr(char *s) { * Duplicate a linked list of words */ word *dup_word_list(word *w) { - word *head, **eptr = &head; + word *head = NULL, **eptr = &head; while (w) { word *newwd = snew(word);