[SHLWAPI] Fix SHLoadIndirectString executing code when loading a string

This commit is contained in:
Mark Jansen 2020-05-18 21:39:34 +02:00
parent 922a956805
commit f2ffd21232
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B

View file

@ -2896,7 +2896,11 @@ HRESULT WINAPI SHLoadIndirectString(LPCWSTR src, LPWSTR dst, UINT dst_len, void
index_str++;
index = atoiW(index_str);
#ifdef __REACTOS__
hmod = LoadLibraryExW(dllname, NULL, LOAD_LIBRARY_AS_DATAFILE);
#else
hmod = LoadLibraryW(dllname);
#endif
if(!hmod) goto end;
if(index < 0)