[pulseaudio-commits] r1084 - /trunk/src/pulsecore/iochannel.c

svnmailer-noreply at 0pointer.de svnmailer-noreply at 0pointer.de
Fri Jul 14 16:00:21 PDT 2006


Author: lennart
Date: Sat Jul 15 01:00:20 2006
New Revision: 1084

URL: http://0pointer.de/cgi-bin/viewcvs.cgi?rev=1084&root=pulseaudio&view=rev
Log:
don't set MSG_NOSIGNAL for recvmsg(), since it doesn't make sense there

Modified:
    trunk/src/pulsecore/iochannel.c

Modified: trunk/src/pulsecore/iochannel.c
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/trunk/src/pulsecore/iochannel.c?rev=1084&root=pulseaudio&r1=1083&r2=1084&view=diff
==============================================================================
--- trunk/src/pulsecore/iochannel.c (original)
+++ trunk/src/pulsecore/iochannel.c Sat Jul 15 01:00:20 2006
@@ -336,7 +336,7 @@
     mh.msg_controllen = sizeof(cmsg_data);
     mh.msg_flags = 0;
 
-    if ((r = recvmsg(io->ifd, &mh, MSG_NOSIGNAL)) >= 0) {
+    if ((r = recvmsg(io->ifd, &mh, 0)) >= 0) {
         struct cmsghdr *cmsg;
 
         *creds_valid = 0;




More information about the pulseaudio-commits mailing list