mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
Fix problem with windows where stderr is not flushed until end of program.
client/mysqldump.c: fflush stderr after writing to it.
This commit is contained in:
@@ -852,6 +852,7 @@ static void DB_error(MYSQL *mysql, const char *when)
|
||||
DBUG_ENTER("DB_error");
|
||||
fprintf(stderr, "%s: Got error: %d: %s %s\n", my_progname,
|
||||
mysql_errno(mysql), mysql_error(mysql), when);
|
||||
fflush(stderr);
|
||||
safe_exit(EX_MYSQLERR);
|
||||
DBUG_VOID_RETURN;
|
||||
} /* DB_error */
|
||||
|
||||
Reference in New Issue
Block a user