fixed uninitialized name pointers (cppcheck)

This commit is contained in:
Simon Wenner 2015-05-03 02:16:26 +02:00
parent 332d9af81b
commit 3f1826866b

View file

@ -233,7 +233,7 @@ int CPPlayer::get_channel_voice(int p_channel) {
const char* CPPlayer::get_voice_sample_name(int p_voice) {
const char *name;
const char *name = NULL;
@ -302,7 +302,7 @@ const char * CPPlayer::get_voice_instrument_name(int p_voice) {
const char *name;
const char *name = NULL;