1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

fflush(NULL) before abort so that all pending writes are performed

This commit is contained in:
msvensson@neptunus.(none)
2006-08-07 10:16:37 +02:00
parent e33bd1a309
commit 2e4dbadf9f

View File

@ -122,7 +122,7 @@ static void client_disconnect();
void die(const char *file, int line, const char *expr)
{
fprintf(stderr, "%s:%d: check failed: '%s'\n", file, line, expr);
fflush(stderr);
fflush(NULL);
abort();
}