[prev in list] [next in list] [prev in thread] [next in thread] 

List:       xalan-c-users
Subject:    Re: XSLTInputSource - getting fatal error
From:       Vitaly Prapirny <marl () mebius ! net>
Date:       2004-07-29 14:09:15
Message-ID: 4109050B.3010203 () mebius ! net
[Download RAW message or body]

Hi,
Bettina Reck wrote:
> Next (hopefully not too stupid beginner-) question: when there was
> an access violation before why does the program not end in the catch-block
> now?
Maybe you had issue with the variable scope:
// error !
	...initialize
	A	a;
	...terminate
	return; // destructor A called here, after termination
// correct
	...initialize
	try {
		A	a;
	} // destructor A called here, before termination
	catch (...) { }
	...terminate
	return;

Good luck !

[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic