http://bugs.winehq.org/show_bug.cgi?id=59536 --- Comment #5 from Alexey <alexeysf.prvt@gmail.com> --- (In reply to Alexey from comment #4)
(In reply to Hans Leidekker from comment #3)
(In reply to Alexey from comment #2)
I don't know how to create a merge request on GitLab. When I try to fork a repository on GitLab, I get an error saying that the limit has been reached and to contact the administrator.
Right, you need permission to do so. On the Wine project page, select the vertical ellipsis (⋮) in the top right and select Request Access.
Thanks for the tip; I've requested access to the repository.
How long does it usually take for a request to access the repository to be approved? I still don't have access to it. Could you or someone on the team submit a merge request for this code? I made some changes based on your feedback. Note: Some online gaming services may require this function to be called; otherwise, if this function is missing, a server connection error will be displayed. case WINHTTP_OPTION_SERVER_CERT_CHAIN_CONTEXT: { const CERT_CONTEXT *cert; CERT_CHAIN_CONTEXT *cert_chain = NULL; char oid_server_auth[] = szOID_PKIX_KP_SERVER_AUTH; char *server_auth[] = { oid_server_auth }; CERT_CHAIN_PARA chainPara = { sizeof(chainPara), { 0 } }; chainPara.RequestedUsage.Usage.cUsageIdentifier = 1; chainPara.RequestedUsage.Usage.rgpszUsageIdentifier = server_auth; if (!validate_buffer(buffer, buflen, sizeof(cert_chain))) return FALSE; if (!(cert = CertDuplicateCertificateContext(request->server_cert))) return FALSE; if (!CertGetCertificateChain(NULL, cert, NULL, NULL, &chainPara, 0, NULL, &cert_chain)) { CertFreeCertificateContext(cert); return FALSE; } CertFreeCertificateContext(cert); *(CERT_CHAIN_CONTEXT **)buffer = cert_chain; *buflen = sizeof(cert_chain); return TRUE; } -- 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.