[Bug 820485] Re: ubiquity stops installation at 'Configuring target system'

2011-09-24 Thread Christophe Dumez
I would like to report that the 11.10 beta2 installer blocks on
'Configuring target system' on my laptop. Is this problem back?

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

Title:
  ubiquity stops installation at 'Configuring target system'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-keyring/+bug/820485/+subscriptions

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


[Bug 734149] Re: qb crashes while creating a new folder in RSS Downloader dialog

2011-03-30 Thread Christophe Dumez
@Pmakaasrul: Your issue is unrelated. This seems to be a libtorrent-rasterbar 
bug, please check:
http://code.google.com/p/libtorrent/issues/detail?id=176q=on_connect
http://code.google.com/p/libtorrent/issues/detail?id=180q=on_connect

** Bug watch added: code.google.com/p/libtorrent/issues #176
   http://code.google.com/p/libtorrent/issues/detail?id=176

** Bug watch added: code.google.com/p/libtorrent/issues #180
   http://code.google.com/p/libtorrent/issues/detail?id=180

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gtk+2.0 in Ubuntu.
https://bugs.launchpad.net/bugs/734149

Title:
  qb crashes while creating a new folder in RSS Downloader dialog

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


[Bug 734149] Re: qb crashes while creating a new folder in RSS Downloader dialog

2011-03-13 Thread Christophe Dumez
The ASSERT is in gtk+2.0 code and I believe my code is correct. This is
likely to be a bug in gtk+2.0

** Also affects: gtk+2.0 (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: qbittorrent
   Status: New = Triaged

** Changed in: qbittorrent
 Assignee: (unassigned) = Christophe Dumez (hydr0g3n)

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gtk+2.0 in ubuntu.
https://bugs.launchpad.net/bugs/734149

Title:
  qb crashes while creating a new folder in RSS Downloader dialog

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


[Bug 504021] Re: update-gnome-menus-cache crashed with Error in setlocale()

2010-01-07 Thread Christophe Dumez
Why is my system locale considered as invalid then?

$ locale
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory
LANG=en_US.UTF-8
LC_CTYPE=en_US.UTF-8
LC_NUMERIC=en_US.UTF-8
LC_TIME=en_US.UTF-8
LC_COLLATE=en_US.UTF-8
LC_MONETARY=en_US.UTF-8
LC_MESSAGES=en_US.UTF-8
LC_PAPER=en_US.UTF-8
LC_NAME=en_US.UTF-8
LC_ADDRESS=en_US.UTF-8
LC_TELEPHONE=en_US.UTF-8
LC_MEASUREMENT=en_US.UTF-8
LC_IDENTIFICATION=en_US.UTF-8
LC_ALL=

-- 
update-gnome-menus-cache crashed with Error in setlocale()
https://bugs.launchpad.net/bugs/504021
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-menus in ubuntu.

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


[Bug 494373] Re: gnome-network-properties sets $http_proxy incorrectly

2010-01-07 Thread Christophe Dumez
I had a look at the code and it seems that the problem is located here:
50_ubuntu_systemwide_prefs.patch:29

that is to say:
+   /* FIXME: add proxy auth support when a secure store for the proxy
+  password is available */
+   proxy_str = g_strdup_printf(%s://%s:%i/, proxy_type, host, port);
+   g_print(p: %s\n, proxy_str);

So, here the string does not include auth information (it is explained
in the FIXME).

Regarding gnome-terminal, if the http_proxy environment variable is
already defined then it does not attempt to retrieve the proxy
information from gconf and define http_proxy variable.

See src/terminal-screen.c:1422
  /* Do we already have a proxy setting? */
  if (g_hash_table_lookup (env_table, http_proxy) != NULL)
use_proxy = FALSE;

If I comment these two lines, then my http_proxy variable is defined
properly in gnome-terminal (with auth information).

Basically, there are two solutions:
1) The ideal solution would be to add auth support to 
50_ubuntu_systemwide_prefs.patch. I don't know if it is possible because 
apparently a secure store is missing
2) In 50_ubuntu_systemwide_prefs.patch do not attempt to define the http_proxy 
variable whenever authentication is enabled. At least, applications such as 
gnome-terminal will define the http_proxy variable correctly (provided that it 
is not already defined). For other applications, the proxy string without auth 
information would not work anyway when authentication is required.

-- 
gnome-network-properties sets $http_proxy incorrectly
https://bugs.launchpad.net/bugs/494373
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in ubuntu.

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


[Bug 494373] [NEW] gnome-network-properties sets $http_proxy incorrectly

2009-12-09 Thread Christophe Dumez
Public bug reported:

Binary package hint: gnome-control-center

In gnome-network-properties, I select:
- manual proxy configuration
  * check the box: use the same proxy for all protocols
  * Type the HTTP proxy address: proxy.utbm.fr
  * Type the HTTP proxy port: 3128

Then, since my proxy requires authentication, I hit Details button and I:
 * Check Use Authentication
 * Provide my username and password

Then I press Close to exit Details dialog and gnome-network-properties dialog 
and I open a new terminal:
 echo $http_proxy
http://proxy.utbm.fr:3128

Although it should be:
http://username:passw...@proxy.utbm.fr:3128

Note that this worked just fine in previous Ubuntu releases (v9.04 for
example) and it is broken since Ubuntu v9.10.

** Affects: gnome-control-center (Ubuntu)
 Importance: Undecided
 Status: New

-- 
gnome-network-properties sets $http_proxy incorrectly
https://bugs.launchpad.net/bugs/494373
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in ubuntu.

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


[Bug 483541] [NEW] File-roller drag'n drop is unreliable

2009-11-16 Thread Christophe Dumez
Public bug reported:

Binary package hint: file-roller

Drag'n drop of a file from file-roller in Gnome to a local folder is
unreliable here. It fails 1 time out of 5 here approximately.

When it fails, it gives the following error message:
You don't have the right permissions to extract archives in the folder 
file:///home/chris/Documents/ASSET/WP5-T1/VTT/VTT-TML-Integration/Code/Web%20services/xds.txttion

Note that I'm actually trying to drop the file to this location (where the 
permissions are ok):
/home/chris/Documents/ASSET/WP5-T1/VTT/VTT-TML-Integration/Code/Web services/

I have no idea where the trailing xds.txttion comes from and of course
it does not exist on my local filesystem. The error always refers to
this folder name.

Just a hint, I think it has something to do with the time you wait until you 
release the mouse button to actually drop the file in the folder. I think the 
behavior is as follows:
1. Press mouse button on a file in file-roller, drag the mouse to the local 
folder, wait until a '+' appears on the left of the dragged file icon and then 
release the button - It works (If you wait a sufficient amount of time, it 
never crashes)
2. Press mouse button on a file in file-roller, drag the mouse to the local 
folder, immediately release the mouse button before the '+' appears on the left 
of the file icon - It does not do anything, the file is not extracted, no 
error (probably too fast).
3. Crash case: I think it crashes if you release the mouse button relatively 
fast, just before the '+' appears on the icon (or maybe at this moment).

I might be wrong but this is my best guess and I hope it can help
identifying the issue since it is not easy to reproduce probably.

I'm using:
Version: 2.28.1-0ubuntu1

** Affects: file-roller (Ubuntu)
 Importance: Undecided
 Status: New

-- 
File-roller drag'n drop is unreliable
https://bugs.launchpad.net/bugs/483541
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to file-roller in ubuntu.

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


[Bug 403555] Re: [i965GM] menu display problem with intel driver

2009-08-01 Thread Christophe Dumez
Sorry for the delay, I went on vacation.

Indeed, after trying the standard Human theme, I cannot reproduce the
bug.

I was using oxygen theme for gnome. I will see if I can find the url
where I got it from.

-- 
[i965GM] menu display problem with intel driver
https://bugs.launchpad.net/bugs/403555
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gtk+2.0 in ubuntu.

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


[Bug 403555] Re: [i965GM] menu display problem with intel driver

2009-08-01 Thread Christophe Dumez
I got my theme from here: http://kims-area.com/?q=node/63

-- 
[i965GM] menu display problem with intel driver
https://bugs.launchpad.net/bugs/403555
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gtk+2.0 in ubuntu.

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


[Bug 400886] Re: Computer won't open with Nautilus

2009-07-17 Thread Christophe Dumez
Confirmed here: Nautilus segfaults
[ 1513.438601] nautilus[3437]: segfault at 0 ip b767cee7 sp bf906a44 error 4 in 
libglib-2.0.so.0.2103.0[b7621000+c3000]

Same thing happens when accessing a bluetooth device (obex://).

-- 
Computer won't open with Nautilus
https://bugs.launchpad.net/bugs/400886
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in ubuntu.

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


[Bug 400886] Re: Computer won't open with Nautilus

2009-07-17 Thread Christophe Dumez
*** This bug is a duplicate of bug 400869 ***
https://bugs.launchpad.net/bugs/400869

I lack debug symbols, I will see to install them:
(gdb) bt
#0  0xb7774ee7 in g_str_hash () from /usr/lib/libglib-2.0.so.0
#1  0xb77428e8 in g_hash_table_lookup () from /usr/lib/libglib-2.0.so.0
#2  0xb3b793c0 in ?? ()
   from /usr/lib/nautilus/extensions-2.0/libnautilus-ubuntuone.so
#3  0xb7f9c030 in nautilus_info_provider_update_file_info ()
   from /usr/lib/libnautilus-extension.so.1


** This bug has been marked a duplicate of bug 400869
   after running update manager, Nautilus cannot handle computer location

-- 
Computer won't open with Nautilus
https://bugs.launchpad.net/bugs/400886
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in ubuntu.

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


[Bug 400869] Re: after running update manager, Nautilus cannot handle computer location

2009-07-17 Thread Christophe Dumez
Confirmed here. I'm joining a backtrace with debug symbols.

Happens with network://, obex://, computer:// , ...

** Attachment added: Nautilus backtrace
   http://launchpadlibrarian.net/29212430/nautilus-bt.txt

-- 
after running update manager, Nautilus cannot handle computer location
https://bugs.launchpad.net/bugs/400869
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in ubuntu.

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


[Bug 400869] Re: after running update manager, Nautilus cannot handle computer location

2009-07-17 Thread Christophe Dumez

** Attachment added: full backtrace
   http://launchpadlibrarian.net/29212441/nautilus-btfull.txt

-- 
after running update manager, Nautilus cannot handle computer location
https://bugs.launchpad.net/bugs/400869
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in ubuntu.

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


[Bug 400747] Re: Karmic alpha 3: Placescomputer and Placesnetwork fail to load

2009-07-17 Thread Christophe Dumez
Here is the backtrace

** Attachment added: full backtrace
   http://launchpadlibrarian.net/29212481/nautilus-btfull.txt

-- 
Karmic alpha 3: Placescomputer and Placesnetwork fail to load
https://bugs.launchpad.net/bugs/400747
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 400886] Re: Computer won't open with Nautilus

2009-07-17 Thread Christophe Dumez
*** This bug is a duplicate of bug 400747 ***
https://bugs.launchpad.net/bugs/400747

** This bug is no longer a duplicate of bug 400869
   after running update manager, Nautilus cannot handle computer location
** This bug has been marked a duplicate of bug 400747
   Karmic alpha 3: Placescomputer and Placesnetwork fail to load

-- 
Computer won't open with Nautilus
https://bugs.launchpad.net/bugs/400886
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in ubuntu.

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


[Bug 400869] Re: after running update manager, Nautilus cannot handle computer location

2009-07-17 Thread Christophe Dumez
*** This bug is a duplicate of bug 400747 ***
https://bugs.launchpad.net/bugs/400747

** This bug has been marked a duplicate of bug 400747
   Karmic alpha 3: Placescomputer and Placesnetwork fail to load

-- 
after running update manager, Nautilus cannot handle computer location
https://bugs.launchpad.net/bugs/400869
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in ubuntu.

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


[Bug 400565] Re: nautilus crashes when connecting to samba share

2009-07-17 Thread Christophe Dumez
See #400747, I believe this is the same problem.

-- 
nautilus crashes when connecting to samba share
https://bugs.launchpad.net/bugs/400565
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 337657] [NEW] Illegal file spec in link

2009-03-04 Thread Christophe Dumez
Public bug reported:

Binary package hint: libpoppler4

I got the following crash when reading a pdf file :

Error: Illegal file spec in link
Error (0): Call to Object where the object was type 13, not the expected type 3

Program received signal SIGABRT, Aborted.
[Switching to Thread 0xb649db90 (LWP 7147)]
0xb80c5424 in __kernel_vsyscall ()
(gdb) bt 25
#0  0xb80c5424 in __kernel_vsyscall ()
#1  0xb74fd6d0 in raise () from /lib/tls/i686/cmov/libc.so.6
#2  0xb74ff098 in abort () from /lib/tls/i686/cmov/libc.so.6
#3  0xb71ea769 in LinkGoToR (this=0xb20a6628, fileSpecObj=0xb649d0b4, 
destObj=0xb649d0a8) at Object.h:193
#4  0xb71ebceb in LinkAction::parseAction (obj=0xb649d110, baseURI=0x0) at 
Link.cc:82
#5  0xb71ec1c2 in Link (this=0xb2085538, dict=0xb20a6af8, baseURI=0x0) at 
Link.cc:829
#6  0xb71ec31f in Links (this=0xb201cd18, annots=0xb649d1cc, baseURI=0x0) at 
Link.cc:871
#7  0xb7974a1d in poppler_page_get_link_mapping () from 
/usr/lib/libpoppler-glib.so.4
#8  0xb53cab3b in ?? () from /usr/lib/evince/1/backends/libpdfdocument.so
#9  0xb809ea9a in ev_document_links_get_links (document_links=0x9de1f20, 
page=20) at ev-document-links.c:64
#10 0xb8077c3e in ev_job_render_run (job=0x9e82348) at ev-jobs.c:551
#11 0xb8074fa1 in ev_job_run (job=0x9e82348) at ev-jobs.c:207
#12 0xb80786c0 in ev_job_thread_proxy (data=0x0) at ev-job-scheduler.c:183
#13 0xb76b397f in g_thread_create_proxy (data=0x9ce2a68) at 
/build/buildd/glib2.0-2.19.10/glib/gthread.c:635
#14 0xb763b4ff in start_thread () from /lib/tls/i686/cmov/libpthread.so.0
#15 0xb75b649e in clone () from /lib/tls/i686/cmov/libc.so.6

** Affects: poppler (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Illegal file spec in link
https://bugs.launchpad.net/bugs/337657
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to poppler in ubuntu.

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


[Bug 337657] Re: Illegal file spec in link

2009-03-04 Thread Christophe Dumez
Here is full backtrace. Should be usable (I have debug symbols).

** Attachment added: Full backtrace
   http://launchpadlibrarian.net/23413924/poppler-btfull.txt

-- 
Illegal file spec in link
https://bugs.launchpad.net/bugs/337657
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to poppler in ubuntu.

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


[Bug 337657] Re: Illegal file spec in link

2009-03-04 Thread Christophe Dumez
Crash happens when visualizing some of the pages (around the middle of
the file)

** Attachment added: PDF file
   http://launchpadlibrarian.net/23424114/875-0028-01%20RevB-RQL_Guide_Dec08.pdf

-- 
Illegal file spec in link
https://bugs.launchpad.net/bugs/337657
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 326099] [NEW] gnome-panel segfaulting every few seconds

2009-02-06 Thread Christophe Dumez
Public bug reported:

Binary package hint: gnome-panel

Since I updated to jaunty (a few days ago) on my eee-pc 1000H, gnome-
panel is segfaulting every few seconds.

Here is the message in dmesg:
gnome-panel[5654]: segfault at 8 ip b63ef276 sp bfe77f30 error 4 in 
libsoup-2.4.so.1.2.0[b63dc000+3d000]

** Affects: gnome-panel (Ubuntu)
 Importance: Undecided
 Status: New

-- 
gnome-panel segfaulting every few seconds
https://bugs.launchpad.net/bugs/326099
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-panel in ubuntu.

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


[Bug 326099] Re: gnome-panel segfaulting every few seconds

2009-02-06 Thread Christophe Dumez
Ok. Here is backtrace with all debug symbols.

** Attachment removed: debug: bt 25

   http://launchpadlibrarian.net/22037231/gnome-panel-bt.txt

** Attachment removed: debug: bt full 25

   http://launchpadlibrarian.net/22037235/gnome-panel-btfull.txt

** Attachment added: backtrace
   http://launchpadlibrarian.net/22037346/gnome-panel-bt.txt

-- 
gnome-panel segfaulting every few seconds
https://bugs.launchpad.net/bugs/326099
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-panel in ubuntu.

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


[Bug 326099] Re: gnome-panel segfaulting every few seconds

2009-02-06 Thread Christophe Dumez

** Attachment added: debug: bt full 25
   http://launchpadlibrarian.net/22037235/gnome-panel-btfull.txt

-- 
gnome-panel segfaulting every few seconds
https://bugs.launchpad.net/bugs/326099
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-panel in ubuntu.

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


[Bug 326099] Re: gnome-panel segfaulting every few seconds

2009-02-06 Thread Christophe Dumez
Here is the backtrace. Unfortunately, I had debug symbols for gnome-
panel only (not libsoup).

** Attachment added: debug: bt 25
   http://launchpadlibrarian.net/22037231/gnome-panel-bt.txt

-- 
gnome-panel segfaulting every few seconds
https://bugs.launchpad.net/bugs/326099
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-panel in ubuntu.

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


[Bug 326099] Re: gnome-panel segfaulting every few seconds

2009-02-06 Thread Christophe Dumez

** Attachment added: full bactrace
   http://launchpadlibrarian.net/22037364/gnome-panel-btfull.txt

-- 
gnome-panel segfaulting every few seconds
https://bugs.launchpad.net/bugs/326099
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-panel in ubuntu.

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


[Bug 269753] Re: PDF becomes unreadable when rotated

2008-12-17 Thread Christophe Dumez
Well, I'm using up-to-date jaunty and this is still NOT fixed.

-- 
PDF becomes unreadable when rotated
https://bugs.launchpad.net/bugs/269753
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 290188] Re: gnome-screensaver segfaults after resuming from suspend

2008-10-29 Thread Christophe Dumez
Ok. This was fixed by yesterday's new package. Thanks a lot.

** Changed in: gnome-screensaver (Ubuntu)
   Status: New = Fix Released

-- 
gnome-screensaver segfaults after resuming from suspend
https://bugs.launchpad.net/bugs/290188
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-screensaver in ubuntu.

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


[Bug 290188] [NEW] gnome-screensaver segfaults after resuming from suspend

2008-10-28 Thread Christophe Dumez
Public bug reported:

Binary package hint: gnome-screensaver

I installed a clean intrepid release candidate. Whenever I resume from
suspend, I get a black screen, with no login prompt. Apparently, this is
due to gnome-screensaver segfaulting.

This happens everytime for me.

** Affects: gnome-screensaver (Ubuntu)
 Importance: Undecided
 Status: New

-- 
gnome-screensaver segfaults after resuming from suspend
https://bugs.launchpad.net/bugs/290188
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-screensaver in ubuntu.

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


[Bug 290188] Re: gnome-screensaver segfaults after resuming from suspend

2008-10-28 Thread Christophe Dumez

** Attachment added: lspci -vvnn
   http://launchpadlibrarian.net/18960861/lspci-vvnn.log

-- 
gnome-screensaver segfaults after resuming from suspend
https://bugs.launchpad.net/bugs/290188
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-screensaver in ubuntu.

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


[Bug 290188] Re: gnome-screensaver segfaults after resuming from suspend

2008-10-28 Thread Christophe Dumez
Here is segfault message in dmesg:
[ 3996.215644] gnome-screensav[11597]: segfault at 11 ip b7e94fa6 sp bfb5f330 
error 4 in libgnomekbdui.so.3.0.0[b7e8e000+f000]


** Attachment added: dmesg output
   http://launchpadlibrarian.net/18960899/dmesg.output

-- 
gnome-screensaver segfaults after resuming from suspend
https://bugs.launchpad.net/bugs/290188
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-screensaver in ubuntu.

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


[Bug 290188] Re: gnome-screensaver segfaults after resuming from suspend

2008-10-28 Thread Christophe Dumez

** Attachment added: apport crash report
   
http://launchpadlibrarian.net/18961124/_usr_lib_gnome-screensaver_gnome-screensaver-dialog.1000.crash

-- 
gnome-screensaver segfaults after resuming from suspend
https://bugs.launchpad.net/bugs/290188
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-screensaver in ubuntu.

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


[Bug 290188] Re: gnome-screensaver segfaults after resuming from suspend

2008-10-28 Thread Christophe Dumez
Note: looks like it is crashing in gnome keyboard lib.

My keyboard layout is french alternative (default). I installed -dbgsym
packages and retraced apport report. I hope it helps.

** Attachment added: retraced debug with symbols
   http://launchpadlibrarian.net/18961282/retraced.output

-- 
gnome-screensaver segfaults after resuming from suspend
https://bugs.launchpad.net/bugs/290188
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-screensaver in ubuntu.

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


[Bug 258074] Re: metacity crashed with SIGSEGV in mouse_button_mods_handler()

2008-10-26 Thread Christophe Dumez
I don't know how this happened. I had broken packages recently so it may
be linked?

Anyway, I reinstalled Intrepid rc from scratch (simply kept my home
folder) and it works fine now. So my system was broken but I don't know
why.

-- 
metacity crashed with SIGSEGV in mouse_button_mods_handler()
https://bugs.launchpad.net/bugs/258074
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to metacity in ubuntu.

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


[Bug 266929] Re: metacity crashed with SIGSEGV in __libc_start_main()

2008-10-25 Thread Christophe Dumez
X and gnome are running but I have no window manager. Here is the
message in dmesg:

[  622.813587] metacity[7580]: segfault at 0 ip 080abab3 sp bf9c8ff0
error 4 in metacity[8048000+7a000]

Rename .gnome and .gnome2 folders does not solve anything.

-- 
metacity crashed with SIGSEGV in __libc_start_main()
https://bugs.launchpad.net/bugs/266929
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to metacity in ubuntu.

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


[Bug 266929] Re: metacity crashed with SIGSEGV in __libc_start_main()

2008-10-25 Thread Christophe Dumez
I'm also experiencing the same problem with metacity in Intrepid release
candidate.

Any suggestion to fix this problem?

-- 
metacity crashed with SIGSEGV in __libc_start_main()
https://bugs.launchpad.net/bugs/266929
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to metacity in ubuntu.

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


[Bug 266929] Re: metacity crashed with SIGSEGV in __libc_start_main()

2008-10-25 Thread Christophe Dumez
I installed debugging symbols and ran metacity in gdb. Here is the
backtrace (message about ui.c looks strange, did I do something wrong?):

(gdb) run
Starting program: /usr/bin/metacity 
[Thread debugging using libthread_db enabled]
[New Thread 0xb73509d0 (LWP 12524)]

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0xb73509d0 (LWP 12524)]
meta_ui_parse_modifier (accel=0x0, mask=0xbfaf5400) at ui/ui.c:839
839 ui/ui.c: No such file or directory.
in ui/ui.c
(gdb) bt full
#0  meta_ui_parse_modifier (accel=0x0, mask=0xbfaf5400) at ui/ui.c:839
gdk_mask = 0
gdk_sym = 0
#1  0x080746b1 in mouse_button_mods_handler (pref=META_PREF_MOUSE_BUTTON_MODS, 
string_value=0x0, inform_listeners=0xbfaf5444) at core/prefs.c:1381
mods = value optimized out
#2  0x0807592c in meta_prefs_init () at core/prefs.c:550
err = (GError *) 0x0
gconf_dir_cursor = value optimized out
#3  0x0807226c in main (argc=1, argv=0xbfaf5884) at core/main.c:395
act = {__sigaction_handler = {sa_handler = 0x1, sa_sigaction = 0x1}, 
  sa_mask = {__val = {0 repeats 32 times}}, sa_flags = 0, 
  sa_restorer = 0xbfaf56c4}
empty_mask = {__val = {0 repeats 32 times}}
log_domains = {0x0, 0x80b48ec metacity, 0x80b3eab Gtk, 
  0x80b3eaf Gdk, 0x80b3eb3 GLib, 0x80b3eb8 Pango, 
  0x80b3ebe GLib-GObject, 0x80b3ecb GThread}

-- 
metacity crashed with SIGSEGV in __libc_start_main()
https://bugs.launchpad.net/bugs/266929
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to metacity in ubuntu.

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


[Bug 266929] Re: metacity crashed with SIGSEGV in __libc_start_main()

2008-10-25 Thread Christophe Dumez
Here is valgind output, I think it should be more useful.

** Attachment added: valgind output
   http://launchpadlibrarian.net/1141/valgrind.log

-- 
metacity crashed with SIGSEGV in __libc_start_main()
https://bugs.launchpad.net/bugs/266929
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to metacity in ubuntu.

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


[Bug 258074] Re: metacity crashed with SIGSEGV in mouse_button_mods_handler()

2008-10-25 Thread Christophe Dumez
I'm experiencing this bug. I'll attach apport report

** Changed in: metacity (Ubuntu)
   Status: Fix Released = New

-- 
metacity crashed with SIGSEGV in mouse_button_mods_handler()
https://bugs.launchpad.net/bugs/258074
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to metacity in ubuntu.

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


[Bug 258074] Re: metacity crashed with SIGSEGV in mouse_button_mods_handler()

2008-10-25 Thread Christophe Dumez

** Attachment added: apport report
   http://launchpadlibrarian.net/18889422/_usr_bin_metacity.1000.crash

-- 
metacity crashed with SIGSEGV in mouse_button_mods_handler()
https://bugs.launchpad.net/bugs/258074
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to metacity in ubuntu.

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


[Bug 266929] Re: metacity crashed with SIGSEGV in __libc_start_main()

2008-10-25 Thread Christophe Dumez
I attached apport report (with debug symbols) there: #258074

-- 
metacity crashed with SIGSEGV in __libc_start_main()
https://bugs.launchpad.net/bugs/266929
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to metacity in ubuntu.

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


[Bug 258074] Re: metacity crashed with SIGSEGV in mouse_button_mods_handler()

2008-10-25 Thread Christophe Dumez
Could it be related to #289183 ?

-- 
metacity crashed with SIGSEGV in mouse_button_mods_handler()
https://bugs.launchpad.net/bugs/258074
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to metacity in ubuntu.

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


[Bug 270074] [NEW] PDF rendering problem

2008-09-14 Thread Christophe Dumez
Public bug reported:

Binary package hint: evince

I get invoices from my electricity provided in PDF format. Nor Evince or
xpdf are able to render those properly.

Only acroread displays them fine. I'm joining the PDF file so that you
can test.

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

-- 
PDF rendering problem
https://bugs.launchpad.net/bugs/270074
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evince in ubuntu.

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


[Bug 270074] Re: PDF rendering problem

2008-09-14 Thread Christophe Dumez

** Attachment added: PDF invoice
   http://launchpadlibrarian.net/17604242/VisualiserFacture

-- 
PDF rendering problem
https://bugs.launchpad.net/bugs/270074
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evince in ubuntu.

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


[Bug 270074] Re: PDF rendering problem

2008-09-14 Thread Christophe Dumez

** Attachment added: screenshot with evince
   http://launchpadlibrarian.net/17604295/evince.png

-- 
PDF rendering problem
https://bugs.launchpad.net/bugs/270074
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evince in ubuntu.

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


[Bug 270074] Re: PDF rendering problem

2008-09-14 Thread Christophe Dumez

** Attachment added: screenshot with acroread (rendering OK)
   http://launchpadlibrarian.net/17604298/acroread.png

-- 
PDF rendering problem
https://bugs.launchpad.net/bugs/270074
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evince in ubuntu.

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


[Bug 270074] Re: PDF rendering problem

2008-09-14 Thread Christophe Dumez
*** This bug is a duplicate of bug 270075 ***
https://bugs.launchpad.net/bugs/270075

** This bug has been marked a duplicate of bug 270075
   PDF rendering problem

-- 
PDF rendering problem
https://bugs.launchpad.net/bugs/270074
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evince in ubuntu.

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


[Bug 269753] Re: PDF becomes unreadable when rotated

2008-09-13 Thread Christophe Dumez

** Attachment added: screenshot when rotated
   http://launchpadlibrarian.net/17574740/evince-rotated.png

-- 
PDF becomes unreadable when rotated
https://bugs.launchpad.net/bugs/269753
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evince in ubuntu.

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


[Bug 269753] [NEW] PDF becomes unreadable when rotated

2008-09-13 Thread Christophe Dumez
Public bug reported:

My university is providing us with schedules in PDF format. The problem
is that those PDFs should be Rotated (on the right) to be readable.
Unfortunately, when using Evince rotation feature, quality becomes very
bad and the text becomes unreadable.

I'm joining the PDF so that you can test. Simply rotate on the right and
see the difference.

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

-- 
PDF becomes unreadable when rotated
https://bugs.launchpad.net/bugs/269753
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evince in ubuntu.

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


[Bug 269753] Re: PDF becomes unreadable when rotated

2008-09-13 Thread Christophe Dumez

** Attachment added: PDF schedule.
   http://launchpadlibrarian.net/17574723/EMPLOIDUTEMPSGI45AUTOMNE2008_2685.pdf

-- 
PDF becomes unreadable when rotated
https://bugs.launchpad.net/bugs/269753
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evince in ubuntu.

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


[Bug 241139] Re: Intrepid Ibex: Cannot access samba share Unable to mount location

2008-08-25 Thread Christophe Dumez
I have updated to Intreprid today and I experience exactly the same
problem (DBUS error: mountpoint already registered).

However, I can access the shares from ~/.gvfs/share_folder on ip

Note, that this is not a Samba server problem since I'm accessing shares
on a Windows machine. It looks like a communication problem between gvfs
and nautilus. For some reason, it is trying to mount the share again
instead of displaying it when using smb://ip/folder

-- 
Intrepid Ibex: Cannot access samba share Unable to mount location
https://bugs.launchpad.net/bugs/241139
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 239757] Re: Rhythmbox jams after other apps use ALSA

2008-06-21 Thread Christophe Dumez
I would like to confirm this bug too. I first experienced it when I
upgraded to Hardy (I updated to Intrepid and it is still buggy).

I think it is related to the flash plugin. I noticed that I have
playback problems in rhythmbox only when Firefox is running (not all the
time, probably when there is or there was flash running). The symptoms
are the sames as the bug reporter's.

I double-click on a track to play it, no sound and the progress bar does
not move. I have to close/kill rhythmbox, close firefox, open rhythmbox
again and now playback is working. This happens really often.

I would be happy to provide more specific information (or make some
tests on your behalf) if someone is willing to fix this annoying bug.

-- 
Rhythmbox jams after other apps use ALSA
https://bugs.launchpad.net/bugs/239757
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 239757] Re: Rhythmbox jams after other apps use ALSA

2008-06-21 Thread Christophe Dumez
This is very easy to reproduce here :
1. Launch firefox
2. Play a song in rhythmbox
3. Pause the song in rhythmbox
4. Go to youtube and play a video
5. Pause the video on youtube
6. Resume the song playback in rhythmbox - this fails and you need to kill 
rhythmbox.

This bug was introduced when switching to pulseaudio, could this be
related?

-- 
Rhythmbox jams after other apps use ALSA
https://bugs.launchpad.net/bugs/239757
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 239757] Re: Rhythmbox jams after other apps use ALSA

2008-06-21 Thread Christophe Dumez
I'm attaching rhythmbox debug output.

Firefox is running and I played a youtube video. Then I ran rhythmbox in
debug mode and tried to play a song. It failed and I had to kill it. I
hope this output can be of some help.

** Attachment added: rhythmbox debug output
   http://launchpadlibrarian.net/15498309/rhythmbox.debug.gz

-- 
Rhythmbox jams after other apps use ALSA
https://bugs.launchpad.net/bugs/239757
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 239757] Re: Rhythmbox jams after other apps use ALSA

2008-06-21 Thread Christophe Dumez
Wow, I have just installed libflashsupport package and it looks like it
is working fine now.

So it is related to flash and pulseaudio after all.

I got the idea from the ubuntu french forum where users are getting the
same bug: http://forum.ubuntu-fr.org/viewtopic.php?id=220138

-- 
Rhythmbox jams after other apps use ALSA
https://bugs.launchpad.net/bugs/239757
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 239757] Re: Rhythmbox jams after other apps use ALSA

2008-06-21 Thread Christophe Dumez
Person reporting the same problem here (in english this time :) :
http://ubuntuforums.org/showthread.php?t=94109

-- 
Rhythmbox jams after other apps use ALSA
https://bugs.launchpad.net/bugs/239757
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 205925] Re: [HARDY] loud noise on resume [XPSM1330]

2008-04-14 Thread Christophe Dumez
And this sound is also produced by internal speakers when external ones
are not plugged in.

-- 
[HARDY] loud noise on resume [XPSM1330]
https://bugs.launchpad.net/bugs/205925
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-power-manager in ubuntu.

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


[Bug 205925] Re: [HARDY] loud noise on resume [XPSM1330]

2008-04-07 Thread Christophe Dumez
No sorry, this is still happening. It just does not happen on every
resume.

** Changed in: gnome-power-manager (Ubuntu)
   Status: Fix Released = New

-- 
[HARDY] loud noise on resume [XPSM1330]
https://bugs.launchpad.net/bugs/205925
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-power-manager in ubuntu.

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


[Bug 205207] Re: [HARDY] places on network are called smb

2008-03-23 Thread Christophe Dumez
If I rename the place in the bookmarks, the name is remembered on reboot
(not called smb anymore).

But still, the default behavior (when the bookmark was not renamed) is
not the expected one :)

-- 
[HARDY] places on network are called smb
https://bugs.launchpad.net/bugs/205207
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in ubuntu.

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


Re: [Bug 131060] Re: glade 3 segfaults on input dialog creation

2007-09-14 Thread Christophe Dumez
aptitude show glade-3
Package: glade-3
New: yes
State: installed
Automatically installed: yes
Version: 3.3.4-0ubuntu1

I confirm this is still crashing.

On 9/14/07, Áron Sisak [EMAIL PROTECTED] wrote:

 Can you please confirm if this behavior is still present with the latest
 3.3.4-0ubuntu1 Gutsy Glade-3?

 --
 glade 3 segfaults on input dialog creation
 https://bugs.launchpad.net/bugs/131060
 You received this bug notification because you are a direct subscriber
 of the bug.


-- 
glade 3 segfaults on input dialog creation
https://bugs.launchpad.net/bugs/131060
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug contact for glade-3 in ubuntu.

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

[Bug 130969] Re: gnome-panel crashed with SIGSEGV in _XimServerDestroy()

2007-08-09 Thread Christophe Dumez
For me, it happened like this:
- Launch the computer, scim should be launched on startup
- right-click on scim and exit

- Crash

-- 
gnome-panel crashed with SIGSEGV in _XimServerDestroy()
https://bugs.launchpad.net/bugs/130969
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 131060] glade 3 segfaults on input dialog creation

2007-08-08 Thread Christophe Dumez
Public bug reported:

Binary package hint: glade-3

Glade 3 segfault anytime I click on the Input dialog button to create
this kind of dialog. Others dialogs don't have this problem.

** Affects: glade-3 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
glade 3 segfaults on input dialog creation
https://bugs.launchpad.net/bugs/131060
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug contact for glade-3 in ubuntu.

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


[Bug 131060] Re: glade 3 segfaults on input dialog creation

2007-08-08 Thread Christophe Dumez
Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread -1220680016 (LWP 27085)]
0xb7ce984d in ?? () from /usr/lib/libgtk-x11-2.0.so.0
(gdb) bt full
#0  0xb7ce984d in ?? () from /usr/lib/libgtk-x11-2.0.so.0
No symbol table info available.
#1  0x080b4668 in ?? ()
No symbol table info available.
#2  0x0807e620 in ?? ()
No symbol table info available.
#3  0x08084f92 in ?? ()
No symbol table info available.
#4  0xb7aaea7e in gtk_bin_get_type () from /usr/lib/libgtk-x11-2.0.so.0
No symbol table info available.
#5  0xb7aaec45 in ?? () from /usr/lib/libgtk-x11-2.0.so.0
No symbol table info available.
#6  0x080b4668 in ?? ()
No symbol table info available.
#7  0xbfaf70cc in ?? ()
No symbol table info available.
#8  0x in ?? ()
No symbol table info available.
(gdb)

-- 
glade 3 segfaults on input dialog creation
https://bugs.launchpad.net/bugs/131060
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug contact for glade-3 in ubuntu.

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


[Bug 131060] Re: glade 3 segfaults on input dialog creation

2007-08-08 Thread Christophe Dumez
[EMAIL PROTECTED]:~/Desktop/Coolendar$ glade-3 --version
glade3 3.3.3

I have latest Kubuntu Gutsy: Version: 3.3.3-0ubuntu1

-- 
glade 3 segfaults on input dialog creation
https://bugs.launchpad.net/bugs/131060
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug contact for glade-3 in ubuntu.

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


[Bug 131060] Re: glade 3 segfaults on input dialog creation

2007-08-08 Thread Christophe Dumez

** Attachment added: I'm talking about this button
   http://launchpadlibrarian.net/8736498/inputDlgButton.png

-- 
glade 3 segfaults on input dialog creation
https://bugs.launchpad.net/bugs/131060
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug contact for glade-3 in ubuntu.

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


[Bug 131060] Re: glade 3 segfaults on input dialog creation

2007-08-08 Thread Christophe Dumez

** Attachment added: full backtrace
   http://launchpadlibrarian.net/8736770/gdb-glade-3.txt

-- 
glade 3 segfaults on input dialog creation
https://bugs.launchpad.net/bugs/131060
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug contact for glade-3 in ubuntu.

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


[Bug 129247] Re: gnome-panel crashed with SIGSEGV

2007-08-07 Thread Christophe Dumez
It crashed again with the new version but the error message is different
(although I think it is the same problem). It happens when I exit scim.
See this bug report: https://bugs.launchpad.net/ubuntu/+source/gnome-
panel/+bug/130990

-- 
gnome-panel crashed with SIGSEGV
https://bugs.launchpad.net/bugs/129247
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 51177] hal 0.5.7-2ubuntu1 won't install

2006-06-28 Thread Christophe Dumez
Public bug reported:

During last update, hal 0.5.7-2ubuntu1 refuse to configure...

Paramétrage de hal (0.5.7-2ubuntu1) ...
chdir: No such file or directory
 * Reloading system message bus config  
chdir: No such file or directory

 [ ok ]
chdir: No such file or directory
 * Starting Hardware abstraction layer hald

And it stayed like that, I had to kill it.

** Affects: hal (Ubuntu)
 Importance: Untriaged
 Status: Unconfirmed

-- 
hal 0.5.7-2ubuntu1 won't install
https://launchpad.net/bugs/51177

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