As I thought the problem was with the static variables in MVCApplication. I forgot that static variables are not thread safe. Now it works but I do have a design problem.
2010/1/1 omer katz <[email protected]> > While being on debug mode it says that I have an unhandled exception at > session()/. > So that's strange. > I'll try to recompile wt :) > > 2010/1/1 OvermindDL1 <[email protected]> > > On Thu, Dec 31, 2009 at 8:49 PM, omer katz <[email protected]> wrote: >> > Hello. >> > I'm having some sort of problem with "WebSession *session() { return >> > session_; }" it returns an exception I can't catch whenever I reload the >> > page the second time. >> > Here's the code. >> > I hope you guys can tell me what's wrong. >> >> You cannot catch it because it is not an exception, it is an >> assertion. That specific error "usually" indicates that you mixed >> debug and release build libraries. Google: >> _BLOCK_TYPE_IS_VALID(pHead->nBlockUse) >> for more information. So first, check that. >> >> >> ------------------------------------------------------------------------------ >> This SF.Net email is sponsored by the Verizon Developer Community >> Take advantage of Verizon's best-in-class app development support >> A streamlined, 14 day to market process makes app distribution fast and >> easy >> Join now and get one step closer to millions of Verizon customers >> http://p.sf.net/sfu/verizon-dev2dev >> _______________________________________________ >> witty-interest mailing list >> [email protected] >> https://lists.sourceforge.net/lists/listinfo/witty-interest >> >
------------------------------------------------------------------------------ This SF.Net email is sponsored by the Verizon Developer Community Take advantage of Verizon's best-in-class app development support A streamlined, 14 day to market process makes app distribution fast and easy Join now and get one step closer to millions of Verizon customers http://p.sf.net/sfu/verizon-dev2dev
_______________________________________________ witty-interest mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/witty-interest
