uiimage.c : Fix for segfault on setting of working directory (no whatsnew)

This commit is contained in:
Miodrag Milanovic 2010-07-28 10:26:02 +00:00
parent 45e044d3ad
commit 4c89226959

View File

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