From d25195447a3a690fa1d508871d4b15ade928b2b0 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 30 Jan 2013 22:02:48 +0100 Subject: ConfigData: use new/delete instead of GLib --- src/ConfigData.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/ConfigData.cxx b/src/ConfigData.cxx index 8228940e5..7bd04e7c2 100644 --- a/src/ConfigData.cxx +++ b/src/ConfigData.cxx @@ -34,7 +34,7 @@ extern "C" { struct config_param * config_new_param(const char *value, int line) { - struct config_param *ret = g_new(struct config_param, 1); + config_param *ret = new config_param(); if (!value) ret->value = NULL; @@ -63,7 +63,7 @@ config_param_free(struct config_param *param) if (param->num_block_params) g_free(param->block_params); - g_free(param); + delete param; } void -- cgit v1.2.3