зеркало из https://github.com/github/putty.git
Remove buffering on malloc log file
[originally from svn r13]
This commit is contained in:
Родитель
60ab6a5d82
Коммит
b78e127f7c
4
misc.c
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);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче