Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2008-02-27 21:08:52 +0300
committerCorinna Vinschen <corinna@vinschen.de>2008-02-27 21:08:52 +0300
commit3998e2f8e63fb959b48dab9f0e708275ba70b05f (patch)
tree9c94e60ad679275d296ea91633bb9c9705726edb /winsup/cygwin/exceptions.cc
parenta04a25195e84099400cb2356d7a9eda367a9e459 (diff)
* exceptions.cc (stack_info::walk): Fix typo.
Diffstat (limited to 'winsup/cygwin/exceptions.cc')
-rw-r--r--winsup/cygwin/exceptions.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc
index 34defe51b..4c569b4d9 100644
--- a/winsup/cygwin/exceptions.cc
+++ b/winsup/cygwin/exceptions.cc
@@ -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;
}