
Why different run on different system?
I have found the frequently (i.e., nearly 100% of the time), if a Debug
build runs, but a Release build crashes, it is because you have a local
array which you are overrunning.
void func()
{
char buff[5];
strcpy(buff, "Hello"); // BOOM -- That will do it...
}
--
Truth,
James Curran
www.NJTheater.com (Professional)
www.NovelTheory.com (Personal)
www.BrandsForLess.Com (Day Job)
Quote:
> Hi,
> I have a project that in debug version run exactly on all our systems but
in
> release version has bug on some systems and run without any problem on
some
> other systems. All systems are PentumIII with Win2000. And in project
> setting
> in Code Generation the processor is set to blend.
> Please help me.
> ------------------------------------------------------------
> Get your FREE web-based e-mail and newsgroup access at:
> http://MailAndNews.com
> Create a new mailbox, or access your existing IMAP4 or
> POP3 mailbox from anywhere with just a web browser.
> ------------------------------------------------------------