mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Flush stderr before calling abort()
This commit is contained in:
@ -122,6 +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);
|
||||
abort();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user