David Hesselbom
David Hesselbom
What about with the Nexus 6?
See #7...
Anhållan? Önskemål, anmodan... varför låter alla ord så ålderdomliga?
> hemställande, hemställning Också på tok för gammalmodigt. Är det svenska ordförrådet verkligen såhär begränsat? :/
I found the same issue with the `Parent` function when it returns a `Document`, and I suspect it has the same root cause. ```cpp ticpp::Document document; document.Parse(xmlString); // Pick one...
Also, I can confirm the following piece of code also causes a leak, as described by the OP: ```cpp ticpp::Document document; document.Parse(xmlString); auto document2 = document.GetDocument(); ``` and that, as...
Good news: adding `m_impRC->InitRef();` to the body of the constructor `Document::Document( TiXmlDocument* document )` seems to fix the problem, both when calling `GetDocument()`, as OP did, and when `Parent` returns...