Fix delete/delete[] mismatch

bits is only allocated in one place

characterBitmaps[ch]->bits = new char[size != 0 ? size : 1];
remotes/origin/Applications/19.04 v19.03.80
Albert Astals Cid 7 years ago
parent 04e805ec80
commit 0520d58246
  1. 2
      generators/dvi/glyph.cpp

@ -19,7 +19,7 @@ bitmap::bitmap()
bitmap::~bitmap()
{
delete bits;
delete[] bits;
}
glyph::glyph()

Loading…
Cancel
Save