* exceptions.cc (stack_info::walk): Fix typo.
This commit is contained in:
parent
a04a25195e
commit
3998e2f8e6
|
@ -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>
|
2008-02-27 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* cygtls.cc (_cygtls::init_exception_handler): Fix comment.
|
* cygtls.cc (_cygtls::init_exception_handler): Fix comment.
|
||||||
|
|
|
@ -256,7 +256,7 @@ stack_info::walk ()
|
||||||
a SEGV. This is fixed in Vista/2K8 WOW64. */
|
a SEGV. This is fixed in Vista/2K8 WOW64. */
|
||||||
if (wincap.has_restricted_stack_args () && sf.Params[0] == 0x401000)
|
if (wincap.has_restricted_stack_args () && sf.Params[0] == 0x401000)
|
||||||
nparams = 2;
|
nparams = 2;
|
||||||
for (unsigned i = 0; i < nparams; i++)
|
for (unsigned i = 1; i < nparams; i++)
|
||||||
sf.Params[i] = (DWORD) *++ebp;
|
sf.Params[i] = (DWORD) *++ebp;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue