aboutsummaryrefslogtreecommitdiffstats
path: root/epan/emem.c
diff options
context:
space:
mode:
authorkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2009-10-05 18:20:38 +0000
committerkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2009-10-05 18:20:38 +0000
commit2dd7b39104f274c0253c12020a82d3c28a1ec500 (patch)
treea71580430e0edc9c1eb3041c4a64ee0e782cbd47 /epan/emem.c
parent7a1bcdedc0e90b7e28bdc70c3aadcb81a47f2249 (diff)
Use g_malloc()
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30342 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/emem.c')
-rw-r--r--epan/emem.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/emem.c b/epan/emem.c
index c40ddf2c1f..8688378d66 100644
--- a/epan/emem.c
+++ b/epan/emem.c
@@ -394,7 +394,7 @@ emem_create_chunk(emem_chunk_t **free_list, gboolean use_canary) {
npc->free_offset = npc->free_offset_init;
#else /* Is there a draft in here? */
- npc->buf = malloc(EMEM_PACKET_CHUNK_SIZE);
+ npc->buf = g_malloc(EMEM_PACKET_CHUNK_SIZE);
if(npc->buf == NULL) {
THROW(OutOfMemoryError);
}
@@ -834,7 +834,7 @@ se_tree_create(int type, const char *name)
{
emem_tree_t *tree_list;
- tree_list=malloc(sizeof(emem_tree_t));
+ tree_list=g_malloc(sizeof(emem_tree_t));
tree_list->next=se_trees;
tree_list->type=type;
tree_list->tree=NULL;
@@ -1417,7 +1417,7 @@ emem_tree_insert_string(emem_tree_t* se_tree, const gchar* k, void* v, guint32 f
guint32 i;
guint32 tmp;
- aligned = malloc(div * sizeof (guint32));
+ aligned = g_malloc(div * sizeof (guint32));
/* pack the bytes one one by one into guint32s */
tmp = 0;
@@ -1470,7 +1470,7 @@ emem_tree_lookup_string(emem_tree_t* se_tree, const gchar* k, guint32 flags)
guint32 tmp;
void *ret;
- aligned = malloc(div * sizeof (guint32));
+ aligned = g_malloc(div * sizeof (guint32));
/* pack the bytes one one by one into guint32s */
tmp = 0;