summaryrefslogtreecommitdiffstats
path: root/src/core.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core.c')
-rw-r--r--src/core.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core.c b/src/core.c
index 46159037..a1fe7d97 100644
--- a/src/core.c
+++ b/src/core.c
@@ -7,6 +7,7 @@
#include "sink.h"
#include "source.h"
#include "namereg.h"
+#include "util.h"
struct pa_core* pa_core_new(struct pa_mainloop_api *m) {
struct pa_core* c;
@@ -24,6 +25,8 @@ struct pa_core* pa_core_new(struct pa_mainloop_api *m) {
c->modules = NULL;
c->namereg = NULL;
+
+ pa_check_for_sigpipe();
return c;
};