Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 28 Feb 1998 13:02:01 +0100 (MET)
From:      Luigi Rizzo <luigi@labinfo.iet.unipi.it>
To:        hackers@FreeBSD.ORG
Subject:   one-line bugfix to sys/i386/isa/snd/dmabuf.c
Message-ID:  <199802281202.NAA17458@labinfo.iet.unipi.it>

next in thread | raw e-mail | index | archive | help
I was recently pointed out a bug in dmabuf.c -- there is one line which
reads

	d->flags |= ~SND_F_ABORTING;

which obviously should be changed to

	d->flags &= ~SND_F_ABORTING;

this bug must have been there for ages, although it has been probably
undetected since it only affects applications which use the capture
channel and only when a signal is caught while the application
is blocked on a tsleep.

patches for the source tree for this and other minor things will be
submitted in a few days.

	cheers
	luigi

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-hackers" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199802281202.NAA17458>