* exceptions.cc (stack_info::walk): Fix typo.

This commit is contained in:
Corinna Vinschen 2008-02-27 18:08:52 +00:00
parent a04a25195e
commit 3998e2f8e6
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2008-02-27 Corinna Vinschen <corinna@vinschen.de>
* exceptions.cc (stack_info::walk): Fix typo.
2008-02-27 Corinna Vinschen <corinna@vinschen.de>
* cygtls.cc (_cygtls::init_exception_handler): Fix comment.

View File

@ -256,7 +256,7 @@ stack_info::walk ()
a SEGV. This is fixed in Vista/2K8 WOW64. */
if (wincap.has_restricted_stack_args () && sf.Params[0] == 0x401000)
nparams = 2;
for (unsigned i = 0; i < nparams; i++)
for (unsigned i = 1; i < nparams; i++)
sf.Params[i] = (DWORD) *++ebp;
}