https://bugs.winehq.org/show_bug.cgi?id=54819
--- Comment #2 from Dmitry Timoshkov dmitry@baikal.ru --- (In reply to Hans Leidekker from comment #1)
Created attachment 74318 [details] patch
Does this patch help?
- for (ptr = rec; ptr; ptr = ptr->pNext) { if (rec->wType == DNS_TYPE_A) count++; };
- for (ptr = rec6; ptr; ptr = ptr->pNext) { if (rec->wType == DNS_TYPE_AAAA) count++; };
ptr->wType?
for (ptr = rec6; ptr; ptr = ptr->pNext) {
if (rec->wType != DNS_TYPE_AAAA) continue;
Same here.