[Bug 102408] Re: Helper apps inherit open file descriptors

2017-10-16 Thread Bug Watch Updater
** Changed in: firefox
   Status: Confirmed => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/102408

Title:
  Helper apps inherit open file descriptors

To manage notifications about this bug go to:
https://bugs.launchpad.net/centos-dead/+bug/102408/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 102408]

2011-10-15 Thread Mh+mozilla
Something else: mailcap support uses nsIProcess to start commands. These
wouldn't be covered either.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/102408

Title:
  Helper apps inherit open file descriptors

To manage notifications about this bug go to:
https://bugs.launchpad.net/centos-dead/+bug/102408/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408]

2011-10-11 Thread Chris Coulson
Actually, I was thinking about this last week, but why do we have the
gio support in the mozgnome component? gio exists on any system with a
gtk version of 2.14 or newer (the version there is just plucked from a
brief look through the git history of gtk)

And if we modified the mozgnome component to dynamically check for
gconf/gnomevfs, then is there any point to having the separate component
for them anyway? (perhaps I'm missing the point of putting them in
libmozgnome in the first place though?)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/102408

Title:
  Helper apps inherit open file descriptors

To manage notifications about this bug go to:
https://bugs.launchpad.net/centos-dead/+bug/102408/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408]

2011-10-11 Thread Chris Coulson
Ah, I answered my own question - the minimum gtk requirement is 2.10

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/102408

Title:
  Helper apps inherit open file descriptors

To manage notifications about this bug go to:
https://bugs.launchpad.net/centos-dead/+bug/102408/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408]

2011-10-04 Thread Karlt
Mozilla builds depend on libnotify.so.1.  The ABI and soname has since
changed, so that may be a problem on newer distros.  If there's no
stable notification library we can use instead, then we could
dynamically detect.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/102408

Title:
  Helper apps inherit open file descriptors

To manage notifications about this bug go to:
https://bugs.launchpad.net/centos-dead/+bug/102408/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408]

2011-10-04 Thread Mh+mozilla
Also note that mozgnome also may depend on libnotify. (mozilla builds
don't but distros' do)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/102408

Title:
  Helper apps inherit open file descriptors

To manage notifications about this bug go to:
https://bugs.launchpad.net/centos-dead/+bug/102408/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408]

2011-10-03 Thread Karlt
(In reply to Mike Hommey [:glandium] from comment #75)
> Actually, Non-GNOME systems won't be covered with --enable-gio, because the
> gio service is in the mozgnome component, which depends on GNOME libs, which
> will most likely fail to load on non-GNOME systems.

We'd have to either --disable-gconf --disable-gnomevfs (as I expect GIO
distributions will do), or make mozgnome dynamically check for gconf and
gnomevfs if still useful.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/102408

Title:
  Helper apps inherit open file descriptors

To manage notifications about this bug go to:
https://bugs.launchpad.net/centos-dead/+bug/102408/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408]

2011-10-03 Thread Mh+mozilla
(In reply to Karl Tomlinson (:karlt) from comment #73)
> Helper apps should be fine in --enable-gio builds because
> g_desktop_app_info_launch_uris also calls g_spawn_async without
> G_SPAWN_LEAVE_DESCRIPTORS_OPEN.

Actually, Non-GNOME systems won't be covered with --enable-gio, because
the gio service is in the mozgnome component, which depends on GNOME
libs, which will most likely fail to load on non-GNOME systems. And if
mozgnome loads anyway, it contains the GnomeVFSService, which would
already use gnome_vfs_mime_application_launch. So --enable-gio would
change nothing.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/102408

Title:
  Helper apps inherit open file descriptors

To manage notifications about this bug go to:
https://bugs.launchpad.net/centos-dead/+bug/102408/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408]

2011-05-11 Thread Ventnor-bugzilla
Ideally at the same time we can install GTK3 on our build systems and
migrate to that asap.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/102408

Title:
  Helper apps inherit open file descriptors

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408]

2011-05-11 Thread Karlt
gnome_vfs_mime_application_launch_with_env calls g_spawn_async without
G_SPAWN_LEAVE_DESCRIPTORS_OPEN so helper apps should be fine with GnomeVFS.

Non-GNOME (and newer GNOME) systems without --enable-gio will use nsIProcess
which uses PR_CreateProcess, thus hitting this bug.

Helper apps should be fine in --enable-gio builds because
g_desktop_app_info_launch_uris also calls g_spawn_async without
G_SPAWN_LEAVE_DESCRIPTORS_OPEN.

For plugin/content processes this is addressed by CloseSuperfluousFds.

Most systems should have GIO these days, so it looks like the appropriate fix
here is to update glib on our build systems so we can --enable-gio.

(I haven't done an audit of other nsIProcess consumers.)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/102408

Title:
  Helper apps inherit open file descriptors

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408]

2011-05-11 Thread Ventnor-bugzilla
Doing some more code searching, the most important place to put this
call might be nsLocalFile::OpenNSPRFileDesc (and possibly
OpenANSIFileDesc). Writing that here for my own records.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/102408

Title:
  Helper apps inherit open file descriptors

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408]

2011-05-11 Thread Ventnor-bugzilla
wtc doesn't want the proposed approach as he mentioned in bug 372734. We
need to find a way to do this without touching NSPR.

This might possibly mean auditing all PRFileDesc* in mozilla-central and
calling PR_SetFDInheritable(..., PR_FALSE) on them

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/102408

Title:
  Helper apps inherit open file descriptors

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408]

2011-05-10 Thread Mh+mozilla
(In reply to comment #67)
> So this is the culprit?
> http://mxr.mozilla.org/mozilla-central/source/nsprpub/pr/src/md/unix/
> uxproces.c#263
> 
> How exactly do you trigger this? I thought download code used GIO or
> GnomeVFS now to spawn processes.
>
> Is there any valid case for wanting to keep the file descriptors open after
> a fork? I was thinking that, in that function ForkAndExec(), if attr is null
> then I close the fds. karl, thoughts?

My 2 cents:
- The problem is not keeping the file descriptors open after a fork, but after 
an exec.
- There are a lot of valid reasons to keep file descriptors open after a fork
- There are a few valid reasons to keep file descriptors open after an exec, 
but I don't think any of these reasons are in the scope of a browser
- Modifying ForkAndExec() behaviour in nspr means a change in behaviour in all 
applications using NSPR, which may or may not expect file descriptors not to be 
closed.
- As you pointed out, nowadays GIO and GnomeVFS is used (except for mailcap 
entries), but I don't think they close file descriptors either.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/102408

Title:
  Helper apps inherit open file descriptors

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408]

2011-05-10 Thread Roc-ocallahan
Michael, I'd love it if you could take this.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/102408

Title:
  Helper apps inherit open file descriptors

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408]

2011-05-10 Thread Bob+mozilla
Some relevant reference and code over at stackoverflow:

http://stackoverflow.com/questions/5713242/linux-fork-file-descriptors-
inheritance

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/102408

Title:
  Helper apps inherit open file descriptors

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408]

2011-05-10 Thread Ventnor-bugzilla
So this is the culprit?
http://mxr.mozilla.org/mozilla-central/source/nsprpub/pr/src/md/unix/uxproces.c#263

How exactly do you trigger this? I thought download code used GIO or
GnomeVFS now to spawn processes.

Is there any valid case for wanting to keep the file descriptors open
after a fork? I was thinking that, in that function ForkAndExec(), if
attr is null then I close the fds. karl, thoughts?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/102408

Title:
  Helper apps inherit open file descriptors

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408]

2011-04-28 Thread Philip-chee
*** Bug 460936 has been marked as a duplicate of this bug. ***

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/102408

Title:
  Helper apps inherit open file descriptors

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408]

2011-04-28 Thread Rogan Creswick
Hey, we only have 13 months before the 10-year anniversary of this bug!

Here's a doodle for scheduling the party:

http://www.doodle.com/9uav5v7igabaxndv

*Maybe* we could get the ticket status updated to a status that actually
exists  for the occasion :) "NEW" doesn't seem to be on the list
anymore: https://bugzilla.mozilla.org/page.cgi?id=fields.html#status

I won't go so far as to suggest RESOLVED, but IN_PROGRESS would be
*awesome*.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/102408

Title:
  Helper apps inherit open file descriptors

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408]

2011-01-10 Thread dean gaudet
yeah let's not fix this before it's a decade old.  not much longer to
wait!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/102408

Title:
  Helper apps inherit open file descriptors

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408]

2011-01-10 Thread Bzbarsky
We do need to fix this, but we're not going to hold Gecko 2 for it.
Moving to the 2.x list, pending Karl actually having time...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/102408

Title:
  Helper apps inherit open file descriptors

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Re: Helper apps inherit open file descriptors

2010-09-15 Thread Bug Watch Updater
** Changed in: evince
   Status: Invalid => Unknown

** Changed in: evince
   Importance: Unknown => Medium

-- 
Helper apps inherit open file descriptors
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Re: Helper apps inherit open file descriptors

2010-09-15 Thread Bug Watch Updater
** Changed in: firefox
   Importance: Unknown => High

-- 
Helper apps inherit open file descriptors
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Re: Helper apps inherit open file descriptors

2009-11-26 Thread Micah Gersten
Firefox 3.0 is only receiving Security Updates and major bug fixes at
this point.

** Changed in: firefox-3.0 (Ubuntu)
   Status: Triaged => Won't Fix

** Also affects: firefox-3.5 (Ubuntu)
   Importance: Undecided
   Status: New

-- 
Helper apps inherit open file descriptors
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Re: Helper apps inherit open file descriptors

2009-11-26 Thread Micah Gersten
Moving tracking to Firefox 3.5

** Changed in: firefox-3.5 (Ubuntu)
   Importance: Undecided => Medium

** Changed in: firefox-3.5 (Ubuntu)
   Status: New => Triaged

-- 
Helper apps inherit open file descriptors
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Re: Helper apps inherit open file descriptors

2009-05-21 Thread Charlie Kravetz
** Changed in: firefox-3.0 (Ubuntu)
   Status: Confirmed => Triaged

-- 
Helper apps inherit open file descriptors
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Re: Helper apps inherit open file descriptors

2009-04-22 Thread Graham Binns
Marking the centos task invalid at Pedro's request.

** Changed in: centos-dead
   Status: New => Invalid

-- 
Helper apps inherit open file descriptors
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Re: Helper apps inherit open file descriptors

2009-03-17 Thread Pedro Villavicencio
** Summary changed:

- Evince opens ALSA library
+ Helper apps inherit open file descriptors

-- 
Helper apps inherit open file descriptors
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Re: Evince opens ALSA library

2009-03-11 Thread John Vivirito
** Changed in: firefox-3.0 (Ubuntu)
Sourcepackagename: firefox => firefox-3.0

-- 
Evince opens ALSA library
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Re: Evince opens ALSA library

2008-10-23 Thread Bug Watch Updater
** Changed in: firefox
   Status: Unknown => Confirmed

-- 
Evince opens ALSA library
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Re: Evince opens ALSA library

2008-10-23 Thread John Vivirito
Is there a reason we are tracking CentOS for this bug? I havent seena
comment that relates to CentOS

-- 
Evince opens ALSA library
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Re: Evince opens ALSA library

2008-10-23 Thread John Vivirito
does this happen with firefox-2 and firefox-3?  
if so this fix will not be added to firefox-2 but will land for firefox-3. 
I didnt see a post about what versions you are seeing htis on.
Also let me know what Ubuntu version it is happening on if the above versions 
changed.

** Also affects: firefox via
   https://bugzilla.mozilla.org/show_bug.cgi?id=147659
   Importance: Unknown
   Status: Unknown

** Changed in: firefox (Ubuntu)
   Status: New => Incomplete

** Changed in: firefox (Ubuntu)
   Status: Incomplete => Confirmed

-- 
Evince opens ALSA library
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Re: Evince opens ALSA library

2008-09-08 Thread pierz
The fact that Evince appears to access audio is probably some side
effect of libasound/esd linkage with some of the gnome libraries: Whilst
a listing from ldd /usr/bin/evince shows up various audio related
libraries (e.g. libasound), however readelf -d /usr/bin/evince does not,
which would indicate that it's not a direct dependency.

-- 
Evince opens ALSA library
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Re: Evince opens ALSA library

2008-09-08 Thread Ulrich Hobelmann
I'm pretty sure it's not, because I started evince from the command
line, not from within Firefox (I always save files to the desktop).
Even if, it would still be evince that opened my sound device, not
Firefox.

Of course there might be another (different) bug in evince, which might
be related to Firefox.  My original observation was related to stand-
alone evince, however.

-- 
Evince opens ALSA library
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Re: Evince opens ALSA library

2008-09-08 Thread Sebastien Bacher
upstream says that's a firefox issue

** Changed in: firefox (Ubuntu)
Sourcepackagename: evince => firefox
 Assignee: Ubuntu Desktop Bugs (desktop-bugs) => (unassigned)
   Status: Triaged => New

-- 
Evince opens ALSA library
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Re: Evince opens ALSA library

2008-09-07 Thread Bug Watch Updater
** Changed in: evince
   Status: New => Invalid

-- 
Evince opens ALSA library
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Re: Evince opens ALSA library

2008-02-25 Thread Dave Neary
Also happens for me - both on Feisty and Gutsy. I usually open up pdfs
as attachments to mail messages in Thunderbird, these also sometimes
block the sound card.

Dave.

-- 
Evince opens ALSA library
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Re: Evince opens ALSA library

2008-01-08 Thread Spoilerhead
confirmed in gutsy, just wondered why my sound system suddenly stopped
working

lsof |grep pcm delivers:

evince10484 spoilerhead   65u  CHR  116,8
14518 /dev/snd/pcmC0D0p

-- 
Evince opens ALSA library
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Re: Evince opens ALSA library

2007-12-13 Thread RMyers
When I run evince from the command line, I get the following:

ALSA lib confmisc.c:769:(parse_card) cannot find card ''
ALSA lib conf.c:3510:(_snd_config_evaluate) function snd_func_card_driver 
returned error: No such device
ALSA lib confmisc.c:392:(snd_func_concat) error evaluating strings
ALSA lib conf.c:3510:(_snd_config_evaluate) function snd_func_concat returned 
error: No such device
ALSA lib confmisc.c:1251:(snd_func_refer) error evaluating name
ALSA lib conf.c:3510:(_snd_config_evaluate) function snd_func_refer returned 
error: No such device
ALSA lib conf.c:3982:(snd_config_expand) Evaluate error: No such device
ALSA lib pcm.c:2144:(snd_pcm_open_noupdate) Unknown PCM default

under Centos 5.1 with evince-0.6.0-8.el5.x86_64.  No Firefox needed.


** Also affects: centos
   Importance: Undecided
   Status: New

-- 
Evince opens ALSA library
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Re: Evince opens ALSA library

2007-11-01 Thread pierz
I have seen evince hold on to the audio device - Though I have only seen
it after evince has been launched by Firefox - unfortunately it seems
that Firefox does not close file descriptors when it spawns helper apps
- hence if firefox has the audio dev open (quite often the case - e.g.
after using Flash etc) then evince inherits the open audio descriptor
and hangs onto it - even after Firefox is closed. In fact it happens
with any app started by Firefox.

It would appear that this bug has been reported on Firefox bugzilla but
not fixed yet??! See:
https://bugzilla.mozilla.org/show_bug.cgi?id=147659

-- 
Evince opens ALSA library
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Re: Evince opens ALSA library

2007-10-22 Thread Bug Watch Updater
** Changed in: evince
   Status: Unknown => New

-- 
Evince opens ALSA library
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Re: Evince opens ALSA library

2007-10-21 Thread Sebastien Bacher
** Changed in: evince (Ubuntu)
   Status: Confirmed => Triaged

** Also affects: evince via
   http://bugzilla.gnome.org/show_bug.cgi?id=371822
   Importance: Unknown
   Status: Unknown

-- 
Evince opens ALSA library
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Re: Evince opens ALSA library

2007-10-20 Thread Jeltz
Found the corresponding bug in Evince's bug tracker. Where one can see
that the source of the bug is still unidentified.

http://bugzilla.gnome.org/show_bug.cgi?id=371822

-- 
Evince opens ALSA library
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Re: Evince opens ALSA library

2007-10-20 Thread Jeltz
It happens in Gutsy too. Evince has a tendency to lock my sound card.
Never would I have guessed that it was my PDF reader that was at fault.

-- 
Evince opens ALSA library
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Re: Evince opens ALSA library

2007-06-13 Thread Q.
YES, it does

** Changed in: evince (Ubuntu)
   Status: Rejected => Confirmed

-- 
Evince opens ALSA library
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Re: Evince opens ALSA library

2007-05-23 Thread Daniel Holbach
Does this happen with Feisty too?

** Changed in: evince (Ubuntu)
   Status: Needs Info => Rejected

-- 
Evince opens ALSA library
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Re: Evince opens ALSA library

2007-04-10 Thread Ulrich Hobelmann
This was Ubuntu 6.10.  It was only that one time that my sound device
couldn't be opened (I think some non-Ubuntu app was accessing the device
directly and blocked it), so I don't know where else it might happen.

-- 
Evince opens ALSA library
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Re: Evince opens ALSA library

2007-04-10 Thread Sebastien Bacher
Thank you for your bug. What version of Ubuntu do you use? Does it
happen if you don't open anything? Does it happen with other
applications?

** Changed in: evince (Ubuntu)
   Importance: Undecided => Low
 Assignee: (unassigned) => Ubuntu Desktop Bugs
   Status: Unconfirmed => Needs Info

-- 
Evince opens ALSA library
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Re: Evince opens ALSA library

2007-04-10 Thread Silospen
I've experienced the same problem a few times.

Like just a few mins ago, for instance. Beep media player is working
fine, then suddenly "Could not open audio device". lsof -n |grep
"/dev/snd" showed evince was using sound and ending the process freed
the card.

I have no idea why this is going on, but i'd like to know.

-- 
Evince opens ALSA library
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102408] Evince opens ALSA library

2007-04-03 Thread Ulrich Hobelmann
Public bug reported:

Binary package hint: evince

(for no good reason, I think)

I'm noticing this, because right now my sound system isn't working and I get 
error messages like (this is no big deal; I'll have it working again in no 
time):
ALSA lib pcm_direct.c:224:(make_local_socket) connect failed: 
/tmp/alsa-dmix-12345: No such file or directory
ALSA lib pcm_dmix.c:894:(snd_pcm_dmix_open) unable to connect client

I'm starting evince from the command line with a .pdf file as parameter,
and as soon as the window opens, the message appears.

What in the world is a PDF viewer doing with my sound device?  I'm just
wondering.  Maybe this is one call and one dependency that can be
optimized away.  Or maybe there *is* a reason for using ALSA, but I've
never heard any sounds when opening PDF files, and I don't see why that
application should have any business in the sound area at all.  Click
when I follow a hyperlink?

** Affects: evince (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
Evince opens ALSA library
https://bugs.launchpad.net/bugs/102408
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs