Initialise variables

These were detected using clang static analyzer.
This commit is contained in:
Maarten Bosmans 2011-08-13 13:43:20 +02:00 committed by Colin Guthrie
parent 3b76d8065f
commit 92219b01b9
5 changed files with 9 additions and 6 deletions

View file

@ -47,7 +47,8 @@ static const char* const valid_modargs[] = {
int pa__init(pa_module*m) {
pa_modargs *ma = NULL;
int ret = -1, fd = -1;
int ret = -1;
int32_t fd = -1;
char x = 1;
pa_assert(m);