Module: wine Branch: master Commit: 33fd8787289d9c3da7325aed9b576ae2dadaa040 URL: https://source.winehq.org/git/wine.git/?a=commit;h=33fd8787289d9c3da7325aed9...
Author: Sergio Gómez Del Real sdelreal@codeweavers.com Date: Wed Apr 11 11:45:17 2018 -0500
ole32: Reset CLSID of datacache so that automatic entry is re-created on load.
Signed-off-by: Sergio Gómez Del Real sdelreal@codeweavers.com Signed-off-by: Huw Davies huw@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/ole32/datacache.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/dlls/ole32/datacache.c b/dlls/ole32/datacache.c index b98c448..b72b8ff 100644 --- a/dlls/ole32/datacache.c +++ b/dlls/ole32/datacache.c @@ -1843,6 +1843,7 @@ static HRESULT WINAPI DataCache_Load( IPersistStorage *iface, IStorage *stg )
LIST_FOR_EACH_ENTRY_SAFE( entry, cursor2, &This->cache_list, DataCacheEntry, entry ) DataCacheEntry_Destroy( This, entry ); + This->clsid = CLSID_NULL;
ReadClassStg( stg, &clsid ); hr = create_automatic_entry( This, &clsid );