mirror of
https://github.com/love2d/love.git
synced 2026-08-12 08:30:56 +02:00
Fixed crash on attempt to open non-existent file.
This commit is contained in:
@@ -50,14 +50,12 @@ namespace physfs
|
||||
return true;
|
||||
|
||||
// File must exist if read mode.
|
||||
if((mode == READ))
|
||||
if(!PHYSFS_exists(filename.c_str()))
|
||||
throw love::Exception("Could not open file %s. Does not exist.", filename.c_str());
|
||||
if((mode == READ) && !PHYSFS_exists(filename.c_str()))
|
||||
throw love::Exception("Could not open file %s. Does not exist.", filename.c_str());
|
||||
|
||||
// Check whether the write directory is set.
|
||||
if((mode == APPEND || mode == WRITE) && (PHYSFS_getWriteDir() == 0))
|
||||
if(!hack_setupWriteDirectory())
|
||||
throw love::Exception("Could not set write directory.");
|
||||
if((mode == APPEND || mode == WRITE) && (PHYSFS_getWriteDir() == 0) && !hack_setupWriteDirectory())
|
||||
throw love::Exception("Could not set write directory.");
|
||||
|
||||
// File already open?
|
||||
if(file != 0)
|
||||
|
||||
@@ -49,7 +49,7 @@ namespace image
|
||||
if(luax_istype(L, 1, DATA_T))
|
||||
{
|
||||
Data * d = luax_checktype<Data>(L, 1, "Data", DATA_T);
|
||||
ImageData * t;
|
||||
ImageData * t = 0;
|
||||
try {
|
||||
t = instance->newImageData(d);
|
||||
} catch (love::Exception & e) {
|
||||
@@ -66,7 +66,13 @@ namespace image
|
||||
luax_convobj(L, 1, "filesystem", "newFile");
|
||||
|
||||
love::filesystem::File * file = luax_checktype<love::filesystem::File>(L, 1, "File", FILESYSTEM_FILE_T);
|
||||
ImageData * t = instance->newImageData(file);
|
||||
|
||||
ImageData * t = 0;
|
||||
try {
|
||||
t = instance->newImageData(file);
|
||||
} catch (love::Exception & e) {
|
||||
return luaL_error(L, e.what());
|
||||
}
|
||||
luax_newtype(L, "ImageData", IMAGE_IMAGE_DATA_T, (void*)t);
|
||||
return 1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user