mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
004dec2c2f
git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@4 19e92222-5c0b-0410-8929-a290d50e31e9
24 lines
393 B
C
24 lines
393 B
C
|
|
#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);
|
|
}
|
|
|