Commit d2519544 authored by Max Kellermann's avatar Max Kellermann

ConfigData: use new/delete instead of GLib

parent aa8ab2fc
...@@ -34,7 +34,7 @@ extern "C" { ...@@ -34,7 +34,7 @@ extern "C" {
struct config_param * struct config_param *
config_new_param(const char *value, int line) 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) if (!value)
ret->value = NULL; ret->value = NULL;
...@@ -63,7 +63,7 @@ config_param_free(struct config_param *param) ...@@ -63,7 +63,7 @@ config_param_free(struct config_param *param)
if (param->num_block_params) if (param->num_block_params)
g_free(param->block_params); g_free(param->block_params);
g_free(param); delete param;
} }
void void
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment