Skip to content

Commit

Permalink
Missing zero-initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
kleisauke committed Aug 24, 2024
1 parent aee3be3 commit 9a69e76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libvips/foreign/heifsave.c
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ vips_foreign_save_heif_write_page(VipsForeignSaveHeif *heif, int page)
struct heif_error error;
struct heif_encoding_options *options;
#ifdef HAVE_HEIF_ENCODING_OPTIONS_OUTPUT_NCLX_PROFILE
struct heif_color_profile_nclx *nclx;
struct heif_color_profile_nclx *nclx = NULL;
#endif

#ifdef HAVE_HEIF_COLOR_PROFILE
Expand Down

0 comments on commit 9a69e76

Please sign in to comment.