1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-15 16:23:49 +03:00

r5119: fflush after talloc reports to ensure they are fully on disk when using tee

This commit is contained in:
Andrew Tridgell
2005-01-31 04:51:50 +00:00
committed by Gerald (Jerry) Carter
parent 2dd7ccf724
commit e73e49aaa6

View File

@@ -757,6 +757,7 @@ void talloc_report_full(const void *ptr, FILE *f)
(unsigned long)talloc_total_blocks(ptr));
talloc_report_depth(ptr, f, 1);
fflush(f);
}
/*
@@ -784,7 +785,7 @@ void talloc_report(const void *ptr, FILE *f)
(unsigned long)talloc_total_size(c+1),
(unsigned long)talloc_total_blocks(c+1));
}
fflush(f);
}
/*