From: Kalle Wallin Date: Wed, 1 Jun 2005 08:08:30 +0000 (+0000) Subject: Fixes #0000406, segfault if mpd wants a passwort but ncmpc connects without X-Git-Tag: v0.12_alpha1~429 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=0ec3c493147a4c32104fead3e3cf45ccd1051ea9;p=ncmpc.git Fixes #0000406, segfault if mpd wants a passwort but ncmpc connects without git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3304 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- diff --git a/src/main.c b/src/main.c index 8a48dc5..3dd7b6b 100644 --- a/src/main.c +++ b/src/main.c @@ -253,6 +253,13 @@ main(int argc, const char *argv[]) { exit(EXIT_FAILURE); } + + /* if no password is used, but the mpd wants one, the connection + might be established but no status information is avaiable */ + mpdclient_update(mpd); + if(!mpd->status) + exit(EXIT_FAILURE); + connected = TRUE; D("Connected to MPD version %d.%d.%d\n", mpd->connection->version[0],