25 Jul
2023
25 Jul
'23
12:56 p.m.
Hans Leidekker (@hans) commented about dlls/kerberos/unixlib.c:
strW->Length = dstlen - sizeof(WCHAR); }
+static void principal_to_name_and_realm(char *name_with_realm, char **name, char **realm) +{ + *name = strtok( name_with_realm, "@" );
strtok() should be avoided, it's not thread-safe. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/3393#note_40141