Fixed headers for res_query

This commit is contained in:
SChernykh
2023-05-11 08:54:45 +02:00
parent be8b38e5cf
commit bba4f8d0c5
2 changed files with 11 additions and 0 deletions

View File

@@ -204,6 +204,8 @@ include(CheckCSourceCompiles)
set(CMAKE_REQUIRED_LIBRARIES "resolv")
check_c_source_compiles("
#include <sys/types.h>
#include <netinet/in.h>
#include <arpa/nameser.h>
#include <resolv.h>
#include <stdio.h>
@@ -235,6 +237,10 @@ int main(int argc, char* argv[])
int len = ns_rr_rdlen(rr) - 1;
if (len > data[0]) len = data[0];
if (len <= 0) {
continue;
}
char buf[256];
memcpy(buf, data + 1, len);
buf[len] = 0;