summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Raad <Marcel.Raad@teamviewer.com>2019-04-01 18:40:01 +0200
committerMarcel Raad <Marcel.Raad@teamviewer.com>2019-04-02 13:14:57 +0200
commitd110d96b981fb0d0df54ded3f7fc876be891e2e3 (patch)
tree6f6e02afe62200abdeae88b273d9b2557edb0142
parente102ba7a19b81541b8d56014c2f2c70246af2363 (diff)
downloadcurl-d110d96b981fb0d0df54ded3f7fc876be891e2e3.tar.gz
tool_cb_wrt: fix bad-function-cast warning
Commit f5bc578f4cdfdc6c708211dfc2962a0e9d79352d reintroduced the warning fixed in commit 2f5f31bb57d68b54e03bffcd9648aece1fe564f8. Extend fhnd's scope and reuse that variable instead of calling _get_osfhandle a second time to fix the warning again. Closes https://github.com/curl/curl/pull/3718
-rw-r--r--src/tool_cb_wrt.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/tool_cb_wrt.c b/src/tool_cb_wrt.c
index 1944f16c2..f403ab34c 100644
--- a/src/tool_cb_wrt.c
+++ b/src/tool_cb_wrt.c
@@ -81,6 +81,7 @@ size_t tool_write_cb(char *buffer, size_t sz, size_t nmemb, void *userdata)
bool is_tty = config->global->isatty;
#ifdef WIN32
CONSOLE_SCREEN_BUFFER_INFO console_info;
+ intptr_t fhnd;
#endif
/*
@@ -159,13 +160,12 @@ size_t tool_write_cb(char *buffer, size_t sz, size_t nmemb, void *userdata)
}
#ifdef _WIN32
+ fhnd = _get_osfhandle(fileno(outs->stream));
if(isatty(fileno(outs->stream)) &&
- GetConsoleScreenBufferInfo(
- (HANDLE)_get_osfhandle(fileno(outs->stream)), &console_info)) {
+ GetConsoleScreenBufferInfo((HANDLE)fhnd, &console_info)) {
DWORD in_len = (DWORD)(sz * nmemb);
wchar_t* wc_buf;
DWORD wc_len;
- intptr_t fhnd;
/* calculate buffer size for wide characters */
wc_len = MultiByteToWideChar(CP_UTF8, 0, buffer, in_len, NULL, 0);
@@ -180,8 +180,6 @@ size_t tool_write_cb(char *buffer, size_t sz, size_t nmemb, void *userdata)
return failure;
}
- fhnd = _get_osfhandle(fileno(outs->stream));
-
if(!WriteConsoleW(
(HANDLE) fhnd,
wc_buf,