Bug 84664
Summary: | gnome-volume-control compiled with wrong sound drivers? | ||
---|---|---|---|
Product: | [Retired] Red Hat Linux | Reporter: | Chris Ricker <chris.ricker> |
Component: | gnome-media | Assignee: | Colin Walters <walters> |
Status: | CLOSED RAWHIDE | QA Contact: | Jay Turner <jturner> |
Severity: | medium | Docs Contact: | |
Priority: | medium | ||
Version: | 9 | CC: | srevivo |
Target Milestone: | --- | Keywords: | Triaged |
Target Release: | --- | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2004-07-26 17:23:45 UTC | Type: | --- |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: | |||
Bug Depends On: | |||
Bug Blocks: | 100644 |
Description
Chris Ricker
2003-02-20 04:40:41 UTC
Still there? Looks like some kind of silly number-parsing bug or something. I don't have a severn box handy, but on a fully up2date RHL 9 I get: [cricker@yoshimi mp3s]$ gnome-volume-control Warning: This version of the Gnome Volume Control was compiled with OSS version 3.8.2, and your system is running version 19896.236.158. From the strace, it looks like it's trying to grovel /dev/{,sound/}mixer1, which doesn't exist. First it pokes /dev/mixer for some info: 13281 open("/dev/mixer", O_RDWR) = 16 13281 ioctl(16, OSS_GETVERSION, 0xbfffe0bc) = 0 13281 ioctl(16, SOUND_OLD_MIXER_INFO, 0x805a1bc) = 0 then it pokes mixer1, fails, and warns 13281 open("/dev/mixer1", O_RDWR) = -1 ENODEV (No such device) 13281 open("/dev/mixer1", O_RDWR) = -1 ENODEV (No such device) 13281 open("/dev/sound/mixer1", O_RDWR) = -1 ENOENT (No such file or directory) 13281 ioctl(-1, OSS_GETVERSION, 0xbfffe0bc) = -1 EBADF (Bad file descriptor) 13281 write(2, "Warning: This version of the Gno"..., 137) = 137 13281 ioctl(-1, SOUND_OLD_MIXER_INFO, 0x8086f54) = -1 EBADF (Bad file descriptor) That's with gnome-media-2.2.1.1-4 Ugh, looks like pretty dorky code. Should be easy to fix though, just handle that error properly. Looks fine to me now, closing. |