summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorVladislav Vaintroub <wlad@mariadb.com>2019-06-21 18:51:36 +0200
committerVladislav Vaintroub <wlad@mariadb.com>2019-06-22 11:56:59 +0200
commit72d3676fe5608d29c1200386de8a2ef4ecfe15b3 (patch)
tree7742057a8a0c5f1c02c0d1a270ccb0d2e7eed425 /client
parente9a692fe1ecd82e0812f4986a0010ca0db9295b7 (diff)
downloadmariadb-git-72d3676fe5608d29c1200386de8a2ef4ecfe15b3.tar.gz
remove workaround from MDEV-9409
Diffstat (limited to 'client')
-rw-r--r--client/mysqltest.cc9
1 files changed, 1 insertions, 8 deletions
diff --git a/client/mysqltest.cc b/client/mysqltest.cc
index 4b663ebd2cd..b5232b99e91 100644
--- a/client/mysqltest.cc
+++ b/client/mysqltest.cc
@@ -873,17 +873,10 @@ static char *my_fgets(char * s, int n, FILE * stream, int *len)
/*
Wrapper for popen().
- On Windows, uses binary mode to workaround
- C runtime bug mentioned in MDEV-9409
*/
static FILE* my_popen(const char *cmd, const char *mode)
{
- FILE *f= popen(cmd, mode);
-#ifdef _WIN32
- if (f)
- _setmode(fileno(f), O_BINARY);
-#endif
- return f;
+ return popen(cmd, mode);
}
#ifdef EMBEDDED_LIBRARY