Fix cppcheck bufferAccessOutOfBounds

This commit is contained in:
Chris Young 2014-04-03 19:03:58 +01:00
parent b91c28b8d1
commit a741ceadb8
1 changed files with 1 additions and 1 deletions

View File

@ -341,7 +341,7 @@ APTR ami_colormap_to_clut(struct ColorMap *cmap)
{
int i;
UBYTE *clut = AllocVecTags(256 * 4, AVT_ClearWithValue, 0, TAG_DONE); /* NB: Was not MEMF_PRIVATE */
ULONG colour[3 * 256];
ULONG colour[256 * 4];
if(!clut) return NULL;