aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJ. Alexander Treuman <jat@spatialrift.net>2007-05-26 18:20:53 +0000
committerJ. Alexander Treuman <jat@spatialrift.net>2007-05-26 18:20:53 +0000
commit93e68adc79e5b8cc534656d848ee15932b3321bf (patch)
treeb1a939c3b184cda029f49c1903d80e7b73054a57 /src
parentbba444524eca700970f69261bc470fb01a138222 (diff)
After changing ERROR();exit() to FATAL(), gcc incorrectly detects some
uninitialized variables and non-returning functions that return. Let's tell it to stfu. git-svn-id: https://svn.musicpd.org/mpd/trunk@6277 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src')
-rw-r--r--src/audioOutputs/audioOutput_shout.c5
-rw-r--r--src/listen.c6
-rw-r--r--src/state_file.c1
3 files changed, 6 insertions, 6 deletions
diff --git a/src/audioOutputs/audioOutput_shout.c b/src/audioOutputs/audioOutput_shout.c
index 25966d17..7d93f8f8 100644
--- a/src/audioOutputs/audioOutput_shout.c
+++ b/src/audioOutputs/audioOutput_shout.c
@@ -117,7 +117,7 @@ static int myShout_initDriver(AudioOutput * audioOutput, ConfigParam * param)
char *user;
char *name;
BlockParam *blockParam;
- unsigned int public;
+ unsigned int public = 0;
sd = newShoutData();
@@ -157,8 +157,7 @@ static int myShout_initDriver(AudioOutput * audioOutput, ConfigParam * param)
FATAL("public \"%s\" is not \"yes\" or \"no\" at line "
"%i\n", param->value, param->line);
}
- } else
- public = 0;
+ }
blockParam = getBlockParam(param, "user");
if (blockParam)
diff --git a/src/listen.c b/src/listen.c
index d2e7cf5a..323bf430 100644
--- a/src/listen.c
+++ b/src/listen.c
@@ -53,7 +53,7 @@ static int boundPort;
static int establishListen(unsigned int port,
struct sockaddr *addrp, socklen_t addrlen)
{
- int pf;
+ int pf = 0;
int sock;
int allowReuse = ALLOW_REUSE;
@@ -105,8 +105,8 @@ static int establishListen(unsigned int port,
static void parseListenConfigParam(unsigned int port, ConfigParam * param)
{
- struct sockaddr *addrp;
- socklen_t addrlen;
+ struct sockaddr *addrp = NULL;
+ socklen_t addrlen = 0;
struct sockaddr_in sin;
#ifdef HAVE_IPV6
struct sockaddr_in6 sin6;
diff --git a/src/state_file.c b/src/state_file.c
index 1b0b41f1..ac2fcde7 100644
--- a/src/state_file.c
+++ b/src/state_file.c
@@ -106,5 +106,6 @@ void read_state_file(void)
void mpd_noreturn state_file_fatal(void)
{
FATAL("error parsing state file \"%s\"\n", sfpath);
+ exit(EXIT_FAILURE);
}