[pulseaudio-commits] [SCM] PulseAudio Sound Server branch, master, updated. v0.9.19-214-g5c57650

Lennart Poettering gitmailer-noreply at 0pointer.de
Fri Oct 30 17:56:49 PDT 2009


This is an automated email from the git hooks/post-receive script. It was
generated because of a push to the "PulseAudio Sound Server" repository.

The master branch has been updated
      from  542fa468c26c5035485dc73392c57c222183b510 (commit)

- Log -----------------------------------------------------------------
5c57650 daemon: realpath segfault fix
-----------------------------------------------------------------------

Summary of changes:
 src/daemon/main.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

-----------------------------------------------------------------------

commit 5c576507693c1d7c4aa8c51656b37c91bcf1289b
Author: David Yoder <davidmyoder at gmail.com>
Date:   Fri Oct 30 09:54:08 2009 -0500

    daemon: realpath segfault fix
    
    Lennart,
    
    Apparently I was debugging this at the same time as you. I can't figure out
    why my Fedora 11 install with glibc-2.10 has a glibc realpath that doesn't
    match the gnu documentation and returns null. But it does.
    
    Your commit aa8ce5bb9b159abb2ffb0f43996340566fc2e9c6 almost fixed my
    problem, but it needs a tweak.
    
    Thanks,
    David Yoder

diff --git a/src/daemon/main.c b/src/daemon/main.c
index 576fc3e..c73e9af 100644
--- a/src/daemon/main.c
+++ b/src/daemon/main.c
@@ -425,7 +425,7 @@ int main(int argc, char *argv[]) {
 
         pa_set_env("LD_BIND_NOW", "1");
 
-        if (!(canonical_rp = pa_realpath(PA_BINARY))) {
+        if ((canonical_rp = pa_realpath(PA_BINARY))) {
 
             if ((rp = pa_readlink("/proc/self/exe"))) {
 

-- 
hooks/post-receive
PulseAudio Sound Server



More information about the pulseaudio-commits mailing list