Fix overflow in out_push()

This commit is contained in:
jsteube
2017-09-17 12:14:52 +02:00
parent 8802b12644
commit 7a278ef035
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1396,7 +1396,7 @@ typedef struct out
{
FILE *fp;
char buf[BUFSIZ];
char buf[HCBUFSIZ_TINY];
int len;
} out_t;