aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-setup.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/e-setup.c')
-rw-r--r--shell/e-setup.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/shell/e-setup.c b/shell/e-setup.c
index b3d41509c4..ee5227f789 100644
--- a/shell/e-setup.c
+++ b/shell/e-setup.c
@@ -282,16 +282,16 @@ setup_bonobo_conf_private_directory (const char *evolution_directory)
_("Evolution could not create directory\n"
"%s:\n%s"),
name, strerror (errno));
- free (name);
+ g_free (name);
return FALSE;
}
- free (name);
+ g_free (name);
return TRUE;
}
if (S_ISDIR (buf.st_mode) && access (name, R_OK | W_OK | X_OK) == 0) {
- free (name);
+ g_free (name);
return TRUE;
}
@@ -309,7 +309,7 @@ setup_bonobo_conf_private_directory (const char *evolution_directory)
name, strerror (errno));
}
- free (name);
+ g_free (name);
return FALSE;
}