summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2024-03-10 15:24:37 +0000
committermidipix <writeonce@midipix.org>2024-03-10 15:24:37 +0000
commit9a3246173ce1d855beebe83f44849e2aa0cf2e4a (patch)
treec91f8238a03a2b84e692c1aea8d523537f61d16b /src
parent39ce397bc705086b8856cc5c578244aabf093aa9 (diff)
downloadslibtool-9a3246173ce1d855beebe83f44849e2aa0cf2e4a.tar.bz2
slibtool-9a3246173ce1d855beebe83f44849e2aa0cf2e4a.tar.xz
slbt_ar_get_archive_ctx(): store a private copy of the archive path.
Diffstat (limited to 'src')
-rw-r--r--src/arbits/slbt_archive_ctx.c7
-rw-r--r--src/internal/slibtool_driver_impl.h1
2 files changed, 7 insertions, 1 deletions
diff --git a/src/arbits/slbt_archive_ctx.c b/src/arbits/slbt_archive_ctx.c
index a110e97..a22c806 100644
--- a/src/arbits/slbt_archive_ctx.c
+++ b/src/arbits/slbt_archive_ctx.c
@@ -52,6 +52,7 @@ static int slbt_ar_free_archive_ctx_impl(struct slbt_archive_ctx_impl * ctx, int
if (ctx) {
slbt_ar_free_archive_meta(ctx->meta);
slbt_unmap_raw_archive(&ctx->map);
+ free(ctx->pathbuf);
free(ctx);
}
@@ -84,8 +85,12 @@ int slbt_ar_get_archive_ctx(
return slbt_ar_free_archive_ctx_impl(ctx,
SLBT_NESTED_ERROR(dctx));
+ if (!(ctx->pathbuf = strdup(path)))
+ return slbt_ar_free_archive_ctx_impl(ctx,
+ SLBT_NESTED_ERROR(dctx));
+
ctx->dctx = dctx;
- ctx->path = path;
+ ctx->path = ctx->pathbuf;
ctx->actx.path = &ctx->path;
ctx->actx.map = &ctx->map;
ctx->actx.meta = ctx->meta;
diff --git a/src/internal/slibtool_driver_impl.h b/src/internal/slibtool_driver_impl.h
index 600b02f..e6e21ea 100644
--- a/src/internal/slibtool_driver_impl.h
+++ b/src/internal/slibtool_driver_impl.h
@@ -196,6 +196,7 @@ struct slbt_exec_ctx_impl {
struct slbt_archive_ctx_impl {
const struct slbt_driver_ctx * dctx;
const char * path;
+ char * pathbuf;
struct slbt_raw_archive map;
struct slbt_archive_meta * meta;
struct slbt_archive_ctx actx;