worksheet: fix resource leaks on error paths

This commit is contained in:
John McNamara 2024-10-25 16:51:51 +01:00
parent 7ba204a82c
commit 67c9faab8f

View File

@ -9626,12 +9626,16 @@ worksheet_set_selection(lxw_worksheet *self,
/* Check that row and col are valid without storing. */
err = _check_dimensions(self, first_row, first_col, LXW_TRUE, LXW_TRUE);
if (err)
if (err) {
free(selection);
return err;
}
err = _check_dimensions(self, last_row, last_col, LXW_TRUE, LXW_TRUE);
if (err)
if (err) {
free(selection);
return err;
}
/* Set the cell range selection. Do this before swapping max/min to */
/* allow the selection direction to be reversed. */
@ -10677,8 +10681,10 @@ worksheet_embed_image_opt(lxw_worksheet *self,
/* Check and store the cell dimensions. */
err = _check_dimensions(self, row_num, col_num, LXW_FALSE, LXW_FALSE);
if (err)
if (err) {
fclose(image_stream);
return err;
}
/* Create a new object to hold the image properties. */
object_props = calloc(1, sizeof(lxw_object_properties));