diff options
author | Lennart Poettering <lennart@poettering.net> | 2009-09-08 23:46:23 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2009-09-08 23:46:23 +0200 |
commit | f5046759cdd72daf5ba3b31c9dfc7b8d5be6bc9b (patch) | |
tree | b179f9d8d43310bfb8ef85a60d096d1d7ff98760 /src/pulsecore/protocol-simple.c | |
parent | b2606cf641f01f688dcb05abcfef3ba003e74efb (diff) |
llvm-clang-analyzer: drop a few unnecessary assignments and other trivial fixes
Diffstat (limited to 'src/pulsecore/protocol-simple.c')
-rw-r--r-- | src/pulsecore/protocol-simple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pulsecore/protocol-simple.c b/src/pulsecore/protocol-simple.c index d66db4b7..a9f73896 100644 --- a/src/pulsecore/protocol-simple.c +++ b/src/pulsecore/protocol-simple.c @@ -154,7 +154,7 @@ static int do_read(connection *c) { ssize_t r; size_t l; void *p; - size_t space; + size_t space = 0; connection_assert_ref(c); |