Jacek Caban wrote:
This isn't thread-safe.
Why not just use the IID instead of an enumeration here? I know you're trying to cache the typeinfo here, but the current implementation of typelibs makes ITypeLib_GetTypeInfoOfGuid very cheap.
Why are you doing this from DLL_THREAD_DETACH and not DLL_PROCESS_DETACH?
Hi Robert,
Thanks for your review.
Robert Shearman wrote:
I don't consider it really important here ATM. I haven't seen any app that would benefit from thread safe MSHTML. Anyway I will fix it.
It's surely not cheaper than a simple table element check. It's a part of code that is extremely profiled in Gecko (that is its counterpart in Gecko). We don't have to take that much care of it, but I think such simple caching is wort the efforts.
Ops, that's my fatal mistake.
Thanks, Jacek