mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +13:00
Fix free memory when not allocated
Bug fix by Alex Haley <ahaley@meditech.com>
This commit is contained in:
parent
58537edf0a
commit
1057bb9fa5
@ -508,7 +508,6 @@ int plot_raster_maxicode(struct zint_symbol *symbol, int rotate_angle, int data_
|
|||||||
|
|
||||||
if (!(scaled_hexagon = (char *) malloc(hexagon_size * hexagon_size))) {
|
if (!(scaled_hexagon = (char *) malloc(hexagon_size * hexagon_size))) {
|
||||||
strcpy(symbol->errtxt, "656: Insufficient memory for pixel buffer");
|
strcpy(symbol->errtxt, "656: Insufficient memory for pixel buffer");
|
||||||
free(scaled_hexagon);
|
|
||||||
free(pixelbuf);
|
free(pixelbuf);
|
||||||
return ZINT_ERROR_ENCODING_PROBLEM;
|
return ZINT_ERROR_ENCODING_PROBLEM;
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user