about summary refs log tree commit homepage
path: root/ext/http11/tst_cleanup.c
diff options
context:
space:
mode:
authorevanweaver <evanweaver@19e92222-5c0b-0410-8929-a290d50e31e9>2007-10-26 03:07:30 +0000
committerevanweaver <evanweaver@19e92222-5c0b-0410-8929-a290d50e31e9>2007-10-26 03:07:30 +0000
commite045f787e126f40d6cd2539632ceb02221c1e8d8 (patch)
tree47eb16d886e5ead3b4e47d716b9d23f26df624c0 /ext/http11/tst_cleanup.c
parentd7fa2022890e9347933591805f49d7f76fd3e141 (diff)
downloadunicorn-e045f787e126f40d6cd2539632ceb02221c1e8d8.tar.gz
git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@744 19e92222-5c0b-0410-8929-a290d50e31e9
Diffstat (limited to 'ext/http11/tst_cleanup.c')
-rw-r--r--ext/http11/tst_cleanup.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/ext/http11/tst_cleanup.c b/ext/http11/tst_cleanup.c
deleted file mode 100644
index a85491d..0000000
--- a/ext/http11/tst_cleanup.c
+++ /dev/null
@@ -1,23 +0,0 @@
-
-#include "tst.h"
-#include <stdio.h>
-#include <stdlib.h>
-
-void tst_cleanup(struct tst *tst)
-{
-   struct node_lines *current_line;
-   struct node_lines *next_line;
-
-   next_line = tst->node_lines;
-
-   do
-   {
-      current_line = next_line;
-      next_line = current_line->next;
-      free(current_line->node_line);
-      free(current_line);
-   }
-   while(next_line != NULL);
-
-   free(tst);
-}