I have a BHO(Internet Explorer extension) and I'm trying to set a "data:image/png;base64, [code]" (base64 encoded image buffer) as the src of an IHTMLImgElement. When put_src was called from the main thread of the BHO, there was no problem, but now that I call it from a different thread, it returns E_OUTOFMEMORY. The base64 encoded string is very long. For a shorter base64 string it returns no error.
I have to specify that I have no memory leaks, I used only smart COM pointers, and deleted all allocated memory.
Also I use the same type of base64 string to call set_backgroundImage for IHTMLStyle objects and it returns no error.
If the IWebBrowser2 object is marshaled to another thread the string passed to put_src method must be a BSTR allocated with SysAllocString, not a simple LPWSTR. I got the answer from another forum.