fixed Context destructor when constructed using the copy constructor

svn path=/trunk/; revision=7067
This commit is contained in:
Martin Fuchs 2003-12-14 22:10:24 +00:00
parent ec57d5df80
commit d4dd1a3915

View file

@ -808,8 +808,10 @@ struct Context
~Context()
{
s_current = _last;
_last = NULL;
if (_last) {
s_current = _last;
_last = NULL;
}
}
String toString() const;