From 730abc9c1605bba24a76b58b113e50364f99b484 Mon Sep 17 00:00:00 2001 From: peter Date: Mon, 25 Dec 1995 03:26:26 +0000 Subject: Bah humbug! Two uninitialised variables were causing a phkmalloc warning (another notch in phkmalloc's belt) and caused the full rcstemplate to not be constructed for commits on freefall. --- gnu/usr.bin/cvs/cvs/logmsg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/usr.bin/cvs') diff --git a/gnu/usr.bin/cvs/cvs/logmsg.c b/gnu/usr.bin/cvs/cvs/logmsg.c index 5f2763f..7686a36 100644 --- a/gnu/usr.bin/cvs/cvs/logmsg.c +++ b/gnu/usr.bin/cvs/cvs/logmsg.c @@ -294,8 +294,8 @@ rcsinfo_proc (repository, template) if ((tfp = fopen (template, "r")) != NULL) { - char *line; - size_t line_chars_allocated; + char *line = NULL; + size_t line_chars_allocated = 0; while (getline (&line, &line_chars_allocated, tfp) >= 0) (void) fputs (line, fp); -- cgit v1.1