Closed a memory leak with disposal of iso_image_report_system_area() result

This commit is contained in:
Thomas Schmitt 2014-04-13 11:21:33 +02:00
parent 8c1c0775d6
commit d93be961e1
1 changed files with 1 additions and 0 deletions

View File

@ -5062,6 +5062,7 @@ int iso_image_report_system_area(IsoImage *image,
target->lines = calloc(target->line_count + 1, sizeof(char *));
if (target->buf == NULL || target->lines == NULL)
{ret = ISO_OUT_OF_MEM; goto ex;}
target->lines[0] = target->buf; /* even if no lines get reported */
target->byte_count = 0;
target->line_count = 0;
ret = iso_impsysa_report(image, target, 0);