Remove buffering on malloc log file

[originally from svn r13]
This commit is contained in:
Simon Tatham 1999-01-15 11:27:36 +00:00
Родитель 60ab6a5d82
Коммит b78e127f7c
1 изменённых файлов: 3 добавлений и 1 удалений

4
misc.c
Просмотреть файл

@ -13,8 +13,10 @@
static FILE *fp = NULL;
void mlog(char *file, int line) {
if (!fp)
if (!fp) {
fp = fopen("putty_mem.log", "w");
setvbuf(fp, NULL, _IONBF, BUFSIZ);
}
if (fp)
fprintf (fp, "%s:%d: ", file, line);
}