18 Jun
2025
18 Jun
'25
2:16 p.m.
Jacek Caban (@jacek) commented about dlls/wininet/urlcache.c:
* there can be multiple hash tables in the file and the offset to * the next one is stored in the header of the hash table */ - DWORD key = urlcache_hash_key(lpszUrl); + DWORD key = urlcache_hash_key((const BYTE *)lpszUrl);
Not a big deal, but it might be cleaner to move the cast into `urlcache_hash_key` rather than repeating it at each call site. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/8346#note_107064