From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2155) id 38367384843A; Thu, 20 May 2021 08:26:25 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 38367384843A Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Corinna Vinschen To: cygwin-cvs@sourceware.org Subject: [newlib-cygwin] Cygwin: autoload: fix case in DLL name for sanity X-Act-Checkin: newlib-cygwin X-Git-Author: Corinna Vinschen X-Git-Refname: refs/heads/master X-Git-Oldrev: 23d071229d3d963a252b6807ceaec50f73b1577c X-Git-Newrev: 9b24fc95059901966c418c5a777e37a8f11ed9da Message-Id: <20210520082625.38367384843A@sourceware.org> Date: Thu, 20 May 2021 08:26:25 +0000 (GMT) X-BeenThere: cygwin-cvs@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Cygwin core component git logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 May 2021 08:26:25 -0000 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=9b24fc95059901966c418c5a777e37a8f11ed9da commit 9b24fc95059901966c418c5a777e37a8f11ed9da Author: Corinna Vinschen Date: Thu May 20 09:59:00 2021 +0200 Cygwin: autoload: fix case in DLL name for sanity Signed-off-by: Corinna Vinschen Diff: --- winsup/cygwin/autoload.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winsup/cygwin/autoload.cc b/winsup/cygwin/autoload.cc index 0ebe15332..e25439725 100644 --- a/winsup/cygwin/autoload.cc +++ b/winsup/cygwin/autoload.cc @@ -598,7 +598,7 @@ LoadDLLfunc (QueryInterruptTime, 4, KernelBase) LoadDLLfunc (QueryInterruptTimePrecise, 4, KernelBase) LoadDLLfunc (QueryUnbiasedInterruptTime, 4, KernelBase) LoadDLLfunc (QueryUnbiasedInterruptTimePrecise, 4, KernelBase) -LoadDLLfunc (VirtualAlloc2, 28, kernelbase) +LoadDLLfunc (VirtualAlloc2, 28, KernelBase) LoadDLLfunc (NtMapViewOfSectionEx, 36, ntdll)