8 Sep
2025
8 Sep
'25
11:33 a.m.
Jinoh Kang (@iamahuman) commented about programs/wineboot/wineboot.c:
/* create the ComputerName registry keys */ static void create_computer_name_keys(void) { - struct addrinfo hints = {0}, *res; + static const struct addrinfo hints = { .ai_flags = AI_CANONNAME }; + struct addrinfo *res = NULL;
struct addrinfo *res;
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/8918#note_115261