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.