Solves Fl_Table_Row warning in issue #296

This commit is contained in:
Greg Ercolano 2021-11-24 14:57:44 -08:00
parent ef1c2d5b26
commit e97fd17e04

View File

@ -51,6 +51,7 @@ Fl_Table_Row::CharVector::~CharVector() { // DTOR
}
void Fl_Table_Row::CharVector::size(int count) {
if (count <= 0 ) count = 1; // (issue #296)
if (count != _size) {
arr = (char*)realloc(arr, (unsigned)count * sizeof(char));
_size = count;