+4372. [bug] Address undefined behaviour in libt_api. [RT #42480]
+
4371. [func] New "minimal-any" option reduces the size of UDP
responses for qtype ANY by returning a single
arbitrarily selected RRset instead of all RRsets.
tnum = 0;
pts = &T_testlist[0];
- while (*pts->pfv != NULL) {
+ while (pts->pfv != NULL) {
if (T_tvec[tnum / 8] & (0x01 << (tnum % 8))) {
#ifndef WIN32
if (subprocs) {
pts = &list[0];
for (tnum = 0; tnum < T_MAXTESTS - 1; pts++, tnum++) {
- if (*pts->pfv == NULL)
+ if (pts->pfv == NULL)
break;
T_testlist[tnum] = *pts;
}