summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/cvs
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1995-12-25 03:26:26 +0000
committerpeter <peter@FreeBSD.org>1995-12-25 03:26:26 +0000
commit730abc9c1605bba24a76b58b113e50364f99b484 (patch)
treeaaea7b2fa8d3b9876139b2671ef9e1667473682d /gnu/usr.bin/cvs
parentcd0154908c0070e99405a9fd8229eea71f7692f9 (diff)
downloadFreeBSD-src-730abc9c1605bba24a76b58b113e50364f99b484.zip
FreeBSD-src-730abc9c1605bba24a76b58b113e50364f99b484.tar.gz
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.
Diffstat (limited to 'gnu/usr.bin/cvs')
-rw-r--r--gnu/usr.bin/cvs/cvs/logmsg.c4
1 files changed, 2 insertions, 2 deletions
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);
OpenPOWER on IntegriCloud