20 Aug
2025
20 Aug
'25
7:54 a.m.
Jacek Caban (@jacek) commented about dlls/wininet/internet.c:
return ret; }
+static inline BOOL calc_month(SYSTEMTIME* time, const WCHAR **s, WCHAR *end)
The `end` input value is unused, `wcstol` only uses it as an output parameter, so it should probably be a local variable. Also, there’s no need for inline here, similar to the other helpers in this commit. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/8614#note_113267