summaryrefslogtreecommitdiffstats
path: root/src/pulse
diff options
context:
space:
mode:
authorColin Guthrie <cguthrie@mandriva.org>2010-09-18 10:35:38 +0100
committerColin Guthrie <cguthrie@mandriva.org>2010-09-18 12:05:19 +0100
commit24014e779c889caf43bf9e9c29d645e505127743 (patch)
treedaba2701a334aad2cced248e2a4a065de02ac808 /src/pulse
parent38778117f8e03f32ec5af8684a1013cc7807d66d (diff)
xcb: Ensure the XCB connection is valid before using it.
Diffstat (limited to 'src/pulse')
-rw-r--r--src/pulse/client-conf-x11.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/pulse/client-conf-x11.c b/src/pulse/client-conf-x11.c
index 565f997d..0348a2fd 100644
--- a/src/pulse/client-conf-x11.c
+++ b/src/pulse/client-conf-x11.c
@@ -55,6 +55,11 @@ int pa_client_conf_from_x11(pa_client_conf *c, const char *dname) {
goto finish;
}
+ if (xcb_connection_has_error(xcb)) {
+ pa_log(_("xcb_connection_has_error() returned true"));
+ goto finish;
+ }
+
if (pa_x11_get_prop(xcb, "PULSE_SERVER", t, sizeof(t))) {
pa_bool_t disable_autospawn = TRUE;