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.