summaryrefslogtreecommitdiffstats
path: root/src/pulsecore/core-util.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2009-08-23 21:49:37 +0200
committerLennart Poettering <lennart@poettering.net>2009-08-23 21:49:37 +0200
commita0f01ddc951694e1d13f44dc3a5d0d3fb2daa142 (patch)
treeefdc48ba506b17cdbaa5644f9b40a91051efc998 /src/pulsecore/core-util.c
parentab5ac06ac76c3afbbd99bce2840329dd74756a73 (diff)
port a few things over to use xmalloc and friends instead of low-level libc malloc/free directly
Diffstat (limited to 'src/pulsecore/core-util.c')
-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 0eb32cc4..1c8c6780 100644
--- a/src/pulsecore/core-util.c
+++ b/src/pulsecore/core-util.c
@@ -2223,7 +2223,7 @@ int pa_close_all(int except_fd, ...) {
va_end(ap);
r = pa_close_allv(p);
- free(p);
+ pa_xfree(p);
return r;
}