From b69da427ebfeb2bbee2a4e4c086835c0397ed69e Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Fri, 18 Jan 2013 16:17:40 +0100 Subject: fix memory leak (regression from batch optimization work - unreleased) --- runtime/batch.h | 1 + 1 file changed, 1 insertion(+) (limited to 'runtime/batch.h') diff --git a/runtime/batch.h b/runtime/batch.h index 03122bd0..2ec07670 100644 --- a/runtime/batch.h +++ b/runtime/batch.h @@ -156,6 +156,7 @@ batchFree(batch_t *pBatch) { } } free(pBatch->pElem); + free(pBatch->eltState); } -- cgit v1.2.3