From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1OOvB6-0005hr-J1 for garchives@archives.gentoo.org; Wed, 16 Jun 2010 16:09:25 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 77625E0B77; Wed, 16 Jun 2010 16:09:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 593E6E0B77 for ; Wed, 16 Jun 2010 16:09:17 +0000 (UTC) Received: from corvid.gentoo.org (corvid.gentoo.org [208.92.234.79]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id EA5891B416A for ; Wed, 16 Jun 2010 16:09:16 +0000 (UTC) Received: by corvid.gentoo.org (Postfix, from userid 2262) id 7D5292C3ED; Wed, 16 Jun 2010 16:09:15 +0000 (UTC) From: "Pacho Ramos (pacho)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, pacho@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in app-misc/workrave/files: workrave-1.9.1-nogst-crash.patch workrave-1.9.0-service.in workrave-1.9.0-gcc43.patch workrave-1.9.0-gui.xml workrave-1.9.0-parallel-make.patch workrave-1.9.0-gcc44.patch workrave-1.9.0-nosoundplayer.patch workrave-1.9.0-compilation-fixes.patch workrave-1.9.0-dbus-glib.xml X-VCS-Repository: gentoo-x86 X-VCS-Files: workrave-1.9.1-nogst-crash.patch workrave-1.9.0-service.in workrave-1.9.0-gcc43.patch workrave-1.9.0-gui.xml workrave-1.9.0-parallel-make.patch workrave-1.9.0-gcc44.patch workrave-1.9.0-nosoundplayer.patch workrave-1.9.0-compilation-fixes.patch workrave-1.9.0-dbus-glib.xml X-VCS-Directories: app-misc/workrave/files X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos Content-Type: text/plain; charset=utf8 Message-Id: <20100616160915.7D5292C3ED@corvid.gentoo.org> Date: Wed, 16 Jun 2010 16:09:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 946b5324-a71c-4a80-b7a4-535405ea348e X-Archives-Hash: 0347e7061e392b0f6df43a3b8b067294 pacho 10/06/16 16:09:15 Added: workrave-1.9.1-nogst-crash.patch Removed: workrave-1.9.0-service.in workrave-1.9.0-gcc43.patch workrave-1.9.0-gui.xml workrave-1.9.0-parallel-make.patch workrave-1.9.0-gcc44.patch workrave-1.9.0-nosoundplayer.patch workrave-1.9.0-compilation-fixes.patch workrave-1.9.0-dbus-glib.xml Log: Revision bump fixing bug 316637 and remove old testing (Portage version: 2.1.8.3/cvs/Linux x86_64) Revision Changes Path 1.1 app-misc/workrave/files/workrave-1.9.1-nogst-crash.p= atch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/workrave/= files/workrave-1.9.1-nogst-crash.patch?rev=3D1.1&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/workrave/= files/workrave-1.9.1-nogst-crash.patch?rev=3D1.1&content-type=3Dtext/plai= n Index: workrave-1.9.1-nogst-crash.patch =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- frontend/common/src/SoundPlayer.cc.orig 2010-06-16 10:49:11.000000000= +0200 +++ frontend/common/src/SoundPlayer.cc 2010-06-16 10:54:04.000000000 +020= 0 @@ -334,8 +334,11 @@ void SoundPlayer::init() { - driver->init(); - register_sound_events(); + if (driver !=3D NULL) + { + driver->init(); + register_sound_events(); + } } =20 void @@ -405,6 +408,10 @@ void SoundPlayer::sync_settings() { + if (driver =3D=3D NULL) + { + return; + } if (driver !=3D NULL) { for (unsigned int i =3D 0; i < sizeof(sound_registry)/sizeof(sound= _registry[0]); i++)