Re: [PATCH v4 0/1] MR3784: nsiproxy.sys: Implement ipv6_forward_enumerate_all.
15 Sep
2023
15 Sep
'23
9:22 a.m.
Huw Davies (@huw) commented about dlls/nsiproxy.sys/ip.c:
+ } + + if (stat) + { + stat->origin = NlroManual; + stat->if_index = entry->if_index; + } +} + +struct in6_addr str_to_in6_addr(char *nptr, char **endptr) +{ + struct in6_addr ret; + + for (int i = 0; i < 16; i++) + { + if (!isalnum( *nptr ) || !isalnum( *nptr+1 )) `isxdigit()`?
Also, please add a space either side of the `+`. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/3784#note_45499
904
Age (days ago)
904
Last active (days ago)
0 comments
1 participants
participants (1)
-
Huw Davies (@huw)