Skip to content

Commit

Permalink
Merge pull request #1320 from ejoerns/fix-double-free-casync
Browse files Browse the repository at this point in the history
src/bundle: fix double free
  • Loading branch information
jluebbe committed Jan 10, 2024
2 parents cc03d35 + 7fcb2c3 commit f95f65d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bundle.c
Original file line number Diff line number Diff line change
Expand Up @@ -1949,7 +1949,7 @@ gboolean check_bundle(const gchar *bundlename, RaucBundle **bundle, CheckBundleP

/* Determine store path for casync, defaults to bundle */
if (r_context()->config->store_path) {
ibundle->storepath = r_context()->config->store_path;
ibundle->storepath = g_strdup(r_context()->config->store_path);
} else {
gchar *path = ibundle->origpath ?: ibundle->path;

Expand Down

0 comments on commit f95f65d

Please sign in to comment.