This commit is contained in:
Adam D. Ruppe 2021-10-22 16:48:16 -04:00
parent 9eb1fdd13a
commit b19526647e
1 changed files with 2 additions and 0 deletions

View File

@ -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");
}