From b19526647e61199008bf0d5221e9866cc24e3424 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Fri, 22 Oct 2021 16:48:16 -0400 Subject: [PATCH] omg --- archive.d | 2 ++ 1 file changed, 2 insertions(+) diff --git a/archive.d b/archive.d index 497d06e..7ddcb07 100644 --- a/archive.d +++ b/archive.d @@ -719,6 +719,8 @@ public: import core.stdc.stdlib : malloc, free; auto tfn = (cast(char*)malloc(filename.length+1))[0..filename.length+1]; if (tfn !is null) { + tfn[0 .. filename.length] = filename[]; + tfn[filename.length] = 0; scope(exit) free(tfn.ptr); fl = fopen(tfn.ptr, "rb"); }