Style stuff.

This commit is contained in:
Robert James Kaes 2001-09-11 04:38:23 +00:00
parent 04ea116e8e
commit 8aca9455b2

View File

@ -1,4 +1,4 @@
/* $Id: buffer.c,v 1.7 2001-09-08 18:58:37 rjkaes Exp $ /* $Id: buffer.c,v 1.8 2001-09-11 04:38:23 rjkaes Exp $
* *
* The buffer used in each connection is a linked list of lines. As the lines * The buffer used in each connection is a linked list of lines. As the lines
* are read in and written out the buffer expands and contracts. Basically, * are read in and written out the buffer expands and contracts. Basically,
@ -84,9 +84,8 @@ static void free_line(struct bufline_s *line)
if (!line) if (!line)
return; return;
if (line->string) { if (line->string)
safefree(line->string); safefree(line->string);
}
safefree(line); safefree(line);
} }