mirror of https://github.com/odrling/Aegisub
The KanaTable was missing a destructor. Nobody noticed because the old kanji timer code created but never deleted KanaTable objects on the heap... yes that was a memory leak that'll also get plugged by the rewrite of the kanji timer.
Updates #847. Originally committed to SVN as r3030.
This commit is contained in:
parent
f73c129b55
commit
5a162e53bf
|
@ -220,6 +220,11 @@ KanaTable::KanaTable() {
|
|||
Insert(L"",L"\u30c4\u30a9",L"tso");
|
||||
}
|
||||
|
||||
KanaTable::~KanaTable()
|
||||
{
|
||||
// Do nothing
|
||||
}
|
||||
|
||||
|
||||
//////////
|
||||
// Insert
|
||||
|
|
Loading…
Reference in New Issue