Oops, forgot to free something in the previous commit.

This commit is contained in:
Pietro Gagliardi 2016-05-25 01:10:47 -04:00
parent 47632fe560
commit 474d3fb1d5
1 changed files with 1 additions and 0 deletions

View File

@ -380,6 +380,7 @@ void uiDrawFreeTextLayout(uiDrawTextLayout *layout)
{ {
delete layout->attrs; delete layout->attrs;
layout->format->Release(); layout->format->Release();
uiFree(layout->graphemes);
uiFree(layout->text); uiFree(layout->text);
uiFree(layout); uiFree(layout);
} }