mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 09:36:33 +00:00
fixed Context destructor when constructed using the copy constructor
svn path=/trunk/; revision=7067
This commit is contained in:
parent
ec57d5df80
commit
d4dd1a3915
1 changed files with 4 additions and 2 deletions
|
@ -808,8 +808,10 @@ struct Context
|
|||
|
||||
~Context()
|
||||
{
|
||||
s_current = _last;
|
||||
_last = NULL;
|
||||
if (_last) {
|
||||
s_current = _last;
|
||||
_last = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
String toString() const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue