diff options
author | 2010-07-28 10:26:02 +0000 | |
---|---|---|
committer | 2010-07-28 10:26:02 +0000 | |
commit | 4c89226959edaf18e23c96beedd6cecfc2d3ae07 (patch) | |
tree | c7184adf3fd50c6bf0ce949e50b2080841293fa9 /src/emu/uiimage.c | |
parent | 45e044d3ad2d9a0d6c9835109918c67d3f5e152d (diff) |
uiimage.c : Fix for segfault on setting of working directory (no whatsnew)
Diffstat (limited to 'src/emu/uiimage.c')
-rw-r--r-- | src/emu/uiimage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/uiimage.c b/src/emu/uiimage.c index 65be909daad..ded825ffced 100644 --- a/src/emu/uiimage.c +++ b/src/emu/uiimage.c @@ -869,7 +869,7 @@ static void fix_working_directory(device_image_interface *image) /* check to see if the path exists; if not clear it */ if (check_path(image->working_directory()) != FILERR_NONE) - image->set_working_directory(NULL); + image->set_working_directory(""); } |