summaryrefslogtreecommitdiffstats
path: root/src/pulsecore
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2009-09-08 23:52:58 +0200
committerLennart Poettering <lennart@poettering.net>2009-09-08 23:52:58 +0200
commit31ae7deefa72288b0c250b3ddc68c39e8eb840eb (patch)
treee0b5ca7b72d2b8ffe377b034dc812edf078df590 /src/pulsecore
parent1516b7c047464e406ec983f10dcd3b854c4f3331 (diff)
core-util: properly fill in exception array for pa_reset_sigs() (llvm-clang-analyzer)
Diffstat (limited to 'src/pulsecore')
-rw-r--r--src/pulsecore/core-util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pulsecore/core-util.c b/src/pulsecore/core-util.c
index d64c7388..7a9f458c 100644
--- a/src/pulsecore/core-util.c
+++ b/src/pulsecore/core-util.c
@@ -2404,7 +2404,7 @@ int pa_reset_sigs(int except, ...) {
p[i++] = except;
while ((sig = va_arg(ap, int)) >= 0)
- sig = p[i++];
+ p[i++] = sig;
}
p[i] = -1;