July 25, 2023
7:56 a.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