Merge pull request #183 from MuriloMir/patch-1

Update jpeg.d
This commit is contained in:
Adam D. Ruppe 2019-02-11 21:39:52 -05:00 committed by GitHub
commit 07e19d8ff1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 4 deletions

10
jpeg.d
View File

@ -3149,8 +3149,9 @@ public ubyte[] decompress_jpeg_image_from_file(bool useMalloc=false) (const(char
if (filename.length == 0) throw new Exception("cannot open unnamed file");
if (filename.length < 2048) {
import core.stdc.stdlib : alloca;
auto tfn = (cast(char*)alloca(filename.length+1))[0..filename.length+1];
char[2049] buffer;
//import core.stdc.stdlib : alloca;
auto tfn = buffer[0 .. filename.length + 1]; // (cast(char*)alloca(filename.length+1))[0..filename.length+1];
tfn[0..filename.length] = filename[];
tfn[filename.length] = 0;
m_pFile = fopen(tfn.ptr, "rb");
@ -3340,8 +3341,9 @@ public MemoryImage readJpeg (const(char)[] filename) {
if (filename.length == 0) throw new Exception("cannot open unnamed file");
if (filename.length < 2048) {
import core.stdc.stdlib : alloca;
auto tfn = (cast(char*)alloca(filename.length+1))[0..filename.length+1];
char[2049] buffer;
//import core.stdc.stdlib : alloca;
auto tfn = buffer[0 .. filename.length + 1]; // (cast(char*)alloca(filename.length+1))[0..filename.length+1];
tfn[0..filename.length] = filename[];
tfn[filename.length] = 0;
m_pFile = fopen(tfn.ptr, "rb");