From 7cd6d10e29c0d54783c33992f596faaac7f1ebd5 Mon Sep 17 00:00:00 2001 From: Xan Lopez Date: Fri, 7 Mar 2008 18:09:32 +0000 Subject: Use g_slice for EphyPasswordInfo, EphyPermissionInfo, PixbufCacheEntry. (#521017) svn path=/trunk/; revision=8054 --- embed/ephy-favicon-cache.c | 4 ++-- embed/ephy-password-manager.c | 6 +++--- embed/ephy-permission-manager.c | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/embed/ephy-favicon-cache.c b/embed/ephy-favicon-cache.c index cd6ba4862..550c0937b 100644 --- a/embed/ephy-favicon-cache.c +++ b/embed/ephy-favicon-cache.c @@ -155,7 +155,7 @@ pixbuf_cache_entry_free (PixbufCacheEntry *entry) g_object_unref (entry->pixbuf); } - g_free (entry); + g_slice_free (PixbufCacheEntry, entry); } static gboolean @@ -173,7 +173,7 @@ icons_added_cb (EphyNode *node, EphyNode *child, EphyFaviconCache *eb) { - PixbufCacheEntry *entry = g_new0 (PixbufCacheEntry, 1); + PixbufCacheEntry *entry = g_slice_new0 (PixbufCacheEntry); entry->node = child; diff --git a/embed/ephy-password-manager.c b/embed/ephy-password-manager.c index 6f1b49520..ef3bb1e2c 100644 --- a/embed/ephy-password-manager.c +++ b/embed/ephy-password-manager.c @@ -57,7 +57,7 @@ ephy_password_info_new (const char *host, const char *username, const char *password) { - EphyPasswordInfo *info = g_new0 (EphyPasswordInfo, 1); + EphyPasswordInfo *info = g_slice_new0 (EphyPasswordInfo); info->host = g_strdup (host); info->username = g_strdup (username); @@ -75,7 +75,7 @@ ephy_password_info_new (const char *host, EphyPasswordInfo * ephy_password_info_copy (const EphyPasswordInfo *info) { - EphyPasswordInfo *copy = g_new0 (EphyPasswordInfo, 1); + EphyPasswordInfo *copy = g_slice_new0 (EphyPasswordInfo); copy->host = g_strdup (info->host); copy->username = g_strdup (info->username); @@ -98,7 +98,7 @@ ephy_password_info_free (EphyPasswordInfo *info) g_free (info->host); g_free (info->username); g_free (info->password); - g_free (info); + g_slice_free (EphyPasswordInfo, info); } } diff --git a/embed/ephy-permission-manager.c b/embed/ephy-permission-manager.c index 9d6252fbb..b80d41ffe 100644 --- a/embed/ephy-permission-manager.c +++ b/embed/ephy-permission-manager.c @@ -54,7 +54,7 @@ ephy_permission_info_new (const char *host, const char *type, EphyPermission permission) { - EphyPermissionInfo *info = g_new0 (EphyPermissionInfo, 1); + EphyPermissionInfo *info = g_slice_new0 (EphyPermissionInfo); info->host = g_strdup (host); info->qtype = g_quark_from_string (type); @@ -72,7 +72,7 @@ ephy_permission_info_new (const char *host, EphyPermissionInfo * ephy_permission_info_copy (const EphyPermissionInfo *info) { - EphyPermissionInfo *copy = g_new0 (EphyPermissionInfo, 1); + EphyPermissionInfo *copy = g_slice_new0 (EphyPermissionInfo); copy->host = g_strdup (info->host); copy->qtype = info->qtype; @@ -93,7 +93,7 @@ ephy_permission_info_free (EphyPermissionInfo *info) if (info != NULL) { g_free (info->host); - g_free (info); + g_slice_free (EphyPermissionInfo, info); } } -- cgit v1.2.3