cut, uudecode: free buf after use

Signed-off-by: Hiltjo Posthuma <hiltjo@codemadness.org>
This commit is contained in:
Hiltjo Posthuma
2014-06-01 13:49:07 +02:00
committed by sin
parent 2dbb694932
commit daad071b31
2 changed files with 4 additions and 2 deletions

5
cut.c
View File

@@ -96,8 +96,8 @@ seek(const char *s, size_t pos, size_t *prev, size_t count)
static void
cut(FILE *fp)
{
static char *buf = NULL;
static size_t size = 0;
char *buf = NULL;
size_t size = 0;
char *s;
size_t i, n, p;
Range *r;
@@ -123,6 +123,7 @@ cut(FILE *fp)
}
putchar('\n');
}
free(buf);
}
int