4
4
mirror of https://github.com/H-uru/korman.git synced 2025-07-13 18:17:38 -04:00

Fix memleak in _korlib.create_bump_LUT()

This commit is contained in:
2018-12-19 19:33:59 -05:00
parent 070db331fb
commit ad99f496f0

View File

@ -33,8 +33,9 @@ typedef struct {
extern "C" {
PyObject* create_bump_LUT(PyObject*, PyObject* args) {
const int kLUTHeight = 16;
const int kLUTWidth = 16;
static const int kLUTHeight = 16;
static const int kLUTWidth = 16;
static const int kBufSz = kLUTWidth * kLUTWidth * sizeof(uint32_t);
pyMipmap* pymipmap;
if (!PyArg_ParseTuple(args, "O", &pymipmap)) {
@ -54,7 +55,7 @@ PyObject* create_bump_LUT(PyObject*, PyObject* args) {
int startH = delH / 2 + 1;
int doneH = 0;
uint8_t* data = new uint8_t[texture->getTotalSize()];
uint8_t data[kBufSz];
uint32_t* pix = (uint32_t*)data;
int i;
@ -105,7 +106,7 @@ PyObject* create_bump_LUT(PyObject*, PyObject* args) {
}
}
texture->setImageData(data, texture->getTotalSize());
texture->setImageData(data, kBufSz);
Py_RETURN_NONE;
}