Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDmitrijs Goloscapovs <dmitrijs.goloscapovs@zabbix.com>2022-03-16 12:49:21 +0300
committerDmitrijs Goloscapovs <dmitrijs.goloscapovs@zabbix.com>2022-03-16 12:49:21 +0300
commitc29da2dabf5f5caca2e401f2cd6707b225f94e82 (patch)
treee123d05caa56f9bb25c1e2de5577b3d2f67a8ad4 /tests
parenteb09b8db4eb658e34f16e6b8e4949d53506a610c (diff)
parent04d51f70511ddf4bcc52d42bd2d57f2228dafae6 (diff)
.......... [ZBXNEXT-7402] upgraded to master, fixed conflicts
Diffstat (limited to 'tests')
-rw-r--r--tests/libs/zbxsysinfo/common/WEB_PAGE_GET.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libs/zbxsysinfo/common/WEB_PAGE_GET.c b/tests/libs/zbxsysinfo/common/WEB_PAGE_GET.c
index 9226f24cc8d..c46930c547a 100644
--- a/tests/libs/zbxsysinfo/common/WEB_PAGE_GET.c
+++ b/tests/libs/zbxsysinfo/common/WEB_PAGE_GET.c
@@ -128,7 +128,7 @@ CURLcode __wrap_curl_easy_setopt(CURL *easyhandle, int opt, void *val)
req_url = zbx_strdup(req_url, (char*)val);
break;
case CURLOPT_WRITEFUNCTION:
- cb_ptr = val;
+ *(void **)(&cb_ptr) = val;
break;
case CURLOPT_WRITEDATA:
page_data = val;