From 12b6c6ccf7311e09e7cfdc8c5c9c4e244f18b8ff Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 3 Dec 2013 10:51:50 +0100 Subject: OutputAll: use new[]/delete[] instead of g_new()/g_free() --- src/OutputAll.cxx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/OutputAll.cxx b/src/OutputAll.cxx index d167a80cd..8cbfb6e23 100644 --- a/src/OutputAll.cxx +++ b/src/OutputAll.cxx @@ -33,8 +33,6 @@ #include "ConfigOption.hxx" #include "notify.hxx" -#include - #include #include @@ -110,7 +108,7 @@ audio_output_all_init(PlayerControl &pc) Error error; num_audio_outputs = audio_output_config_count(); - audio_outputs = g_new(struct audio_output *, num_audio_outputs); + audio_outputs = new audio_output *[num_audio_outputs]; const config_param empty; @@ -160,7 +158,7 @@ audio_output_all_finish(void) audio_output_finish(audio_outputs[i]); } - g_free(audio_outputs); + delete[] audio_outputs; audio_outputs = nullptr; num_audio_outputs = 0; } -- cgit v1.2.3