core: Fix regression in previous commit

This commit is contained in:
Colin Walters 2012-10-12 15:25:25 -04:00
parent 4436ed34d8
commit b4d408f483
1 changed files with 4 additions and 1 deletions

View File

@ -60,7 +60,10 @@ ot_gfile_ensure_directory (GFile *dir,
if (with_parents)
{
ot_lobj GFile *parent = g_file_get_parent (dir);
if (parent)
ret = ot_gfile_ensure_directory (parent, TRUE, &temp_error);
else
ret = TRUE;
}
else
ret = g_file_make_directory (dir, NULL, &temp_error);