Fixed and unmatched malloc/free pair, which was previously doing a mallco/delete.

This commit is contained in:
Robert Osfield 2002-09-03 09:50:51 +00:00
parent 12226e4371
commit 46585242a1

View File

@ -270,7 +270,7 @@ int *numComponents_ret)
}
}
}
delete [] imbuff; // free the on-disk storage
free(imbuff); // free the on-disk storage
fclose(fp);