From ee763cb1355c16fa9db7892a67563b5391a9e40c Mon Sep 17 00:00:00 2001 From: Harald Oehlmann Date: Tue, 13 Feb 2018 16:53:12 +0100 Subject: [PATCH] Do not free _alloca data --- backend/tif.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/backend/tif.c b/backend/tif.c index 31e06a82..83f86ea7 100644 --- a/backend/tif.c +++ b/backend/tif.c @@ -294,10 +294,5 @@ int tif_pixel_plot(struct zint_symbol *symbol, char *pixelbuf) { fclose(tif_file); } -#ifdef _MSC_VER - free(strip_offset); - free(strip_bytes); -#endif - return 0; }