From: pandeng@telepath.com (Steve Schafer (TeamB)) Subject: Re: error 202 Date: 28 Oct 1999 00:00:00 GMT Message-ID: <3839a33e.167228247@90.0.0.40> Content-Transfer-Encoding: 7bit References: <7v84l6$mj716@forums.borland.com> Content-Type: text/plain; charset=us-ascii Organization: TeamB Mime-Version: 1.0 Reply-To: pandeng@telepath.com Newsgroups: borland.public.delphi.winapi On Wed, 27 Oct 1999 17:19:10 -0700, "William Meyer" wrote: >We're occasionally seeing an exception thrown on error 202. After looking up >its meaning, I can't say I feel enlightened. Can anyone here suggest what >might provoke this error? Error 202 is a stack overflow. It's pretty hard to get a genuine stack overflow in Win32, unless you have runaway recursion. The other way to cause the error is to corrupt the stack by overwriting it, usually by writing past the end of a local variable, or something similar. -Steve