Comment 1 for bug 613723

Revision history for this message
Vaughn Spurlin (vspurlin) wrote :

fix suggestions 2010-07-25:
  569 if (!newmap) { delete[] rgbpal; return NULL; }
  586 delete[] rgbpal;

fix reason:
  delete only releases the first element of an array; delete[] releases the entire array.