1
0
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:
unknown
2006-09-01 13:53:43 +02:00
parent f7e099e0ec
commit 30eaa0b19c

View File

@@ -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 */