http://bugs.winehq.org/show_bug.cgi?id=43114 --- Comment #6 from Dmitry Timoshkov <dmitry@baikal.ru> --- Created attachment 81793 --> http://bugs.winehq.org/attachment.cgi?id=81793 patch The installer does something like this: HCERTSTORE store; const CERT_CONTEXT *cert, *prev = NULL store = CertOpenStore(); do ((cert = CertFindCertificateInStore(store, prev))) { if (prev) CertFreeCertificateContext(prev); prev = cert; } while (cert); Our implementation of CertFindCertificateInStore() internally calls CertEnumCertificatesInStore() which releases 'prev' certificate, and that leads to the assert(). Attached patch fixes this bug. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.