summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobert James Kaes <rjkaes@users.sourceforge.net>2001-09-11 04:38:23 +0000
committerRobert James Kaes <rjkaes@users.sourceforge.net>2001-09-11 04:38:23 +0000
commit8aca9455b24da92f7868de86ffe5369a8a0220aa (patch)
tree8316a66561802def8292189562b30d362b3c29df /src
parent04ea116e8eda7da8ecbf8c412ea6118fd520dced (diff)
downloadtinyproxy-8aca9455b24da92f7868de86ffe5369a8a0220aa.tar.gz
tinyproxy-8aca9455b24da92f7868de86ffe5369a8a0220aa.zip
Style stuff.
Diffstat (limited to '')
-rw-r--r--src/buffer.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/buffer.c b/src/buffer.c
index dfc79d4..126f910 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -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
* 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)
return;
- if (line->string) {
+ if (line->string)
safefree(line->string);
- }
safefree(line);
}