Fix crash when not in debug mode

This commit is contained in:
Přemysl Eric Janouch 2016-10-04 06:47:30 +02:00
parent ac2c7d5108
commit 8dff378617
Signed by: p
GPG Key ID: B715679E3A361BE6
1 changed files with 3 additions and 1 deletions

View File

@ -1725,7 +1725,9 @@ app_on_reconnect (void *user_data)
c->on_failure = mpd_on_failure;
c->on_connected = mpd_on_connected;
c->on_event = mpd_on_events;
c->on_io_hook = mpd_on_io_hook;
if (g_debug_mode)
c->on_io_hook = mpd_on_io_hook;
// We accept hostname/IPv4/IPv6 in pseudo-URL format, as well as sockets
char *address = xstrdup (get_config_string (g_ctx.config.root,