[Bug 654785] [NEW] Erlang segfaults in beam/erl_bestfit_alloc.c:654

2010-10-04 Thread Daniel van Eeden
Public bug reported:

Binary package hint: erlang-base

$ gdb /usr/lib/erlang/erts-5.7.4/bin/beam.smp 
GNU gdb (GDB) 7.1-ubuntu
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later
http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show
copying
and show warranty for details.
This GDB was configured as i486-linux-gnu.
For bug reporting instructions, please see:
http://www.gnu.org/software/gdb/bugs/...
Reading symbols from /usr/lib/erlang/erts-5.7.4/bin/beam.smp...Reading
symbols
from /usr/lib/debug/usr/lib/erlang/erts-5.7.4/bin/beam.smp...done.
done.
(gdb) r
Starting program: /usr/lib/erlang/erts-5.7.4/bin/beam.smp 
[Thread debugging using libthread_db enabled]

Program received signal SIGSEGV, Segmentation fault.
aobf_get_free_block (allctr=0x8201000, size=88144, cand_blk=0x0,
cand_size=0) at beam/erl_bestfit_alloc.c:654
654 beam/erl_bestfit_alloc.c: No such file or directory.
in beam/erl_bestfit_alloc.c
(gdb) q 
A debugging session is active.

Inferior 1 [process 1750] will be killed.

Quit anyway? (y or n) y
$ apt-cache
policy /usr/lib/erlang/erts-5.7.4/bin/beam.smp  
W: Unable to locate package /usr/lib/erlang/erts-5.7.4/bin/beam.smp
he...@helga:~$ dpkg -S /usr/lib/erlang/erts-5.7.4/bin/beam.smp
erlang-base-hipe: /usr/lib/erlang/erts-5.7.4/bin/beam.smp
he...@helga:~$ apt-cache policy erlang-base-hipe 
erlang-base-hipe:
  Installed: 1:13.b.3-dfsg-2ubuntu2
  Candidate: 1:13.b.3-dfsg-2ubuntu2
  Version table:
 *** 1:13.b.3-dfsg-2ubuntu2 0
500 http://nl.archive.ubuntu.com/ubuntu/ lucid/universe Packages
100 /var/lib/dpkg/status

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

-- 
Erlang segfaults in beam/erl_bestfit_alloc.c:654
https://bugs.launchpad.net/bugs/654785
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 654785] Re: Erlang segfaults in beam/erl_bestfit_alloc.c:654

2010-10-04 Thread Daniel van Eeden
This happened with both erlang-base and erlang-base-hipe.

I suspect that value 0x0 is not correct for cand_blk?

This is the code where the segfault happens:
static Block_t *
aobf_get_free_block(Allctr_t *allctr, Uint size,
Block_t *cand_blk, Uint cand_size)
{
BFAllctr_t *bfallctr = (BFAllctr_t *) allctr;
RBTree_t *x = bfallctr-root;
RBTree_t *blk = NULL;
Uint blk_sz;

ASSERT(!cand_blk || cand_size = size);

while (x) {
blk_sz = BLK_SZ(x);
if (blk_sz  size) {
x = x-right;
}
else {
blk = x;
x = x-left;
}
}

if (!blk)
return NULL;

#ifdef HARD_DEBUG
ASSERT(blk == check_tree(bfallctr, size));
#endif

if (cand_blk) {
blk_sz = BLK_SZ(blk);
if (cand_size  blk_sz)
return NULL; /* cand_blk was better */
if (cand_size == blk_sz  ((void *) cand_blk)  ((void *) blk))
return NULL; /* cand_blk was better */
}

aobf_unlink_free_block(allctr, (Block_t *) blk);

return (Block_t *) blk;
}

-- 
Erlang segfaults in beam/erl_bestfit_alloc.c:654
https://bugs.launchpad.net/bugs/654785
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 613387] [NEW] Dutch translation bug

2010-08-04 Thread Daniel van Eeden
Public bug reported:

Binary package hint: gnome-control-center

See screenshot.

The application show HTML markup when it shouldn't.

--- gnome-control-center-2.30.1/debian/changelog
+++ gnome-control-center-2.30.1/debian/changelog
@@ -1,3 +1,9 @@
+gnome-control-center (1:2.30.1-0ubuntu2) lucid; urgency=low
+
+  * Translation fix for nl
+
+ -- Daniel van Eeden gn...@myname.nl  Wed, 04 Aug 2010 11:38:41 +0200
+
 gnome-control-center (1:2.30.1-0ubuntu1) lucid-proposed; urgency=low
 
   * New upstream version (LP: #571244)
only in patch2:
unchanged:
--- gnome-control-center-2.30.1.orig/po/nl.po
+++ gnome-control-center-2.30.1/po/nl.po
@@ -3167,7 +3167,7 @@
 msgstr 
 span size=\large\bGeen overeenkomsten./b /spanspan\n
 \n
- Uw filter ‘b%s/b’ komt met geen enkel item overeen./span
+ Uw filter \b%s/b\ komt met geen enkel item overeen./span
 
 #: ../libslab/app-shell.c:903
 msgid Other

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


** Tags: patch

-- 
Dutch translation bug
https://bugs.launchpad.net/bugs/613387
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 613387] Re: Dutch translation bug

2010-08-04 Thread Daniel van Eeden

** Attachment added: gnome-control-center-bug.png
   http://launchpadlibrarian.net/53038389/gnome-control-center-bug.png

-- 
Dutch translation bug
https://bugs.launchpad.net/bugs/613387
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 613387] Re: Dutch translation bug

2010-08-04 Thread Daniel van Eeden
This patch does not fix the issue.

This is NOT a translation issue as it's also broken for en_US and C
locales.

** Summary changed:

- Dutch translation bug
+ HTML Markup shown when No matches found.

-- 
HTML Markup shown when No matches found.
https://bugs.launchpad.net/bugs/613387
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 613387] Re: HTML Markup shown when No matches found.

2010-08-04 Thread Daniel van Eeden
*** This bug is a duplicate of bug 428642 ***
https://bugs.launchpad.net/bugs/428642

** This bug has been marked a duplicate of bug 428642
   gnome-control-center doesn't display html elements

-- 
HTML Markup shown when No matches found.
https://bugs.launchpad.net/bugs/613387
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 428642] Re: gnome-control-center doesn't display html elements

2010-08-04 Thread Daniel van Eeden
** Bug watch added: Novell/SUSE Bugzilla #556256
   https://bugzilla.novell.com/show_bug.cgi?id=556256

** Also affects: gnome-control-center (Suse) via
   https://bugzilla.novell.com/show_bug.cgi?id=556256
   Importance: Unknown
   Status: Unknown

-- 
gnome-control-center doesn't display html elements
https://bugs.launchpad.net/bugs/428642
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 428642] Re: gnome-control-center doesn't display html elements

2010-08-04 Thread Daniel van Eeden
I've fixed this issue by building agains libslab 2.30.0.

To fix this bug here this could be done:
1. Upgrade libslab0a from 2.27.91-3 to 2.30.0 (or add as a new pkg)
2. Add build depends to gnome-control-center for libslab-dev

Or backport the libslab fix to the libslab version included in gnome-
control-center.

This is the fix for this issue:
http://git.gnome.org/browse/libslab/commit/?id=52f2fded15d8fc05a3f8463e25d5328b152a975b

-- 
gnome-control-center doesn't display html elements
https://bugs.launchpad.net/bugs/428642
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 428642] Re: gnome-control-center doesn't display html elements

2010-08-04 Thread Daniel van Eeden

** Patch added: Patch backported from git
   http://launchpadlibrarian.net/53052501/gnome-control-center-428642.patch

-- 
gnome-control-center doesn't display html elements
https://bugs.launchpad.net/bugs/428642
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 545334] Re: 2.6.32-16-generic: oops when using cassini ethernet adapter

2010-07-04 Thread Daniel van Eeden
I seems like the comment van Oleg is about another NIC, not a Cassini
(ce) interface from Sun.

Oleg, could you please send the output of lspci?

-- 
2.6.32-16-generic: oops when using cassini ethernet adapter
https://bugs.launchpad.net/bugs/545334
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 598819] [NEW] SIGSEGV in cheese_camera_device_get_best_format at cheese-camera-device.c:592

2010-06-26 Thread Daniel van Eeden
Public bug reported:

Binary package hint: cheese

Ubuntu 10.04 64-bit with a Logitech Webcam Pro 9000


$ gdb cheese
GNU gdb (GDB) 7.1-ubuntu
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show copying
and show warranty for details.
This GDB was configured as x86_64-linux-gnu.
For bug reporting instructions, please see:
http://www.gnu.org/software/gdb/bugs/...
Reading symbols from /usr/bin/cheese...Reading symbols from 
/usr/lib/debug/usr/bin/cheese...done.
done.
(gdb) r
Starting program: /usr/bin/cheese 
[Thread debugging using libthread_db enabled]
[New Thread 0x7fffebab5710 (LWP 3596)]
[New Thread 0x7fffeb2b4710 (LWP 3597)]
libv4lconvert: warning more framesizes then I can handle!
libv4lconvert: warning more framesizes then I can handle!

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0x7fffebab5710 (LWP 3596)]
0x77bd4052 in cheese_camera_device_get_best_format (device=value 
optimized out) at cheese-camera-device.c:592
592 cheese-camera-device.c: No such file or directory.
in cheese-camera-device.c
(gdb) bt f
#0  0x77bd4052 in cheese_camera_device_get_best_format (device=value 
optimized out)
at cheese-camera-device.c:592
format = value optimized out
__FUNCTION__ = cheese_camera_device_get_best_format
#1  0x77bd2bcc in cheese_camera_play (camera=0x9f3090) at 
cheese-camera.c:752
priv = 0x9f30b0
device = 0x9e
caps = 0xa904c0
#2  0x77bcfd3c in setup_camera (widget=0x87b000) at cheese-widget.c:344
webcam_device = 0x9c84f0 \001
x_resolution = 0
y_resolution = 0
brightness = 0
contrast = 1
saturation = 1
hue = 0
#3  0x73167b84 in ?? () from /lib/libglib-2.0.so.0
No symbol table info available.
#4  0x768b59ca in start_thread () from /lib/libpthread.so.0
No symbol table info available.
#5  0x72c526cd in clone () from /lib/libc.so.6
No symbol table info available.
#6  0x in ?? ()
No symbol table info available.
(gdb) q
A debugging session is active.

Inferior 1 [process 3593] will be killed.

Quit anyway? (y or n) y


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

-- 
SIGSEGV in cheese_camera_device_get_best_format at cheese-camera-device.c:592
https://bugs.launchpad.net/bugs/598819
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 598819] Re: SIGSEGV in cheese_camera_device_get_best_format at cheese-camera-device.c:592

2010-06-26 Thread Daniel van Eeden
This was probably triggered by the fact that the webcam needs a USB 2.0
port and was connected to an USB 1.1 port.

-- 
SIGSEGV in cheese_camera_device_get_best_format at cheese-camera-device.c:592
https://bugs.launchpad.net/bugs/598819
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 594164] [NEW] Support for HP Smart Array G6 controllers is Missing

2010-06-14 Thread Daniel van Eeden
Public bug reported:

Binary package hint: cciss-vol-status

# /usr/sbin/cciss_vol_status -p /dev/cciss/c*d0
cciss_vol_status: Warning: unknown controller type 0x3245103c
cciss_vol_status: /dev/cciss/c0d0: Unknown controller, board_id = 0x3245103c
# /usr/sbin/cciss_vol_status -p /dev/cciss/c*d0 -u
/dev/cciss/c0d0: (Unknown Smart Array) RAID 1 Volume 0 status: OK. 
# lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 9.04
Release:9.04
Codename:   jaunty

# lspci -d 103c:323a -vv
04:00.0 RAID bus controller: Hewlett-Packard Company Smart Array G6 controllers 
(rev 01)
Subsystem: Hewlett-Packard Company Device 3245
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ 
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort- SERR- PERR- INTx-
Latency: 0, Cache Line Size: 64 bytes
Interrupt: pin A routed to IRQ 28
Region 0: Memory at fb80 (64-bit, non-prefetchable) [size=4M]
Region 2: Memory at fb7f (64-bit, non-prefetchable) [size=4K]
Region 4: I/O ports at 4000 [size=256]
[virtual] Expansion ROM at e600 [disabled] [size=512K]
Capabilities: [40] Power Management version 3
Flags: PMEClk- DSI- D1+ D2- AuxCurrent=375mA 
PME(D0+,D1-,D2-,D3hot-,D3cold-)
Status: D0 PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [50] Message Signalled Interrupts: Mask- 64bit+ Queue=0/0 
Enable-
Address:   Data: 
Capabilities: [70] Express (v2) Endpoint, MSI 00
DevCap: MaxPayload 256 bytes, PhantFunc 0, Latency L0s 1us, L1 
8us
ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
DevCtl: Report errors: Correctable- Non-Fatal+ Fatal+ 
Unsupported-
RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
MaxPayload 256 bytes, MaxReadReq 4096 bytes
DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- 
TransPend-
LnkCap: Port #0, Speed 5GT/s, Width x8, ASPM L0s, Latency L0 
512ns, L1 64us
ClockPM- Suprise- LLActRep- BwNot-
LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
LnkSta: Speed 5GT/s, Width x4, TrErr- Train- SlotClk+ DLActive- 
BWMgmt- ABWMgmt-
Capabilities: [ac] MSI-X: Enable+ Mask- TabSize=16
Vector table: BAR=0 offset=001c2000
PBA: BAR=0 offset=001c4000
Capabilities: [100] Advanced Error Reporting ?
Kernel driver in use: cciss
Kernel modules: cciss

** Affects: cciss-vol-status (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Support for HP Smart Array G6 controllers is Missing
https://bugs.launchpad.net/bugs/594164
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 545334] [NEW] 2.6.32-16-generic: oops when using cassini ethernet adapter

2010-03-23 Thread Daniel van Eeden
Public bug reported:

[ 2613.010052] eth3: resuming
[ 2613.020015] eth3: sw reset failed.
[ 2613.020015] eth3: mac tx[-1]/rx[-1] reset failed []
[ 2613.020015] eth3: mac tx[-1]/rx[-1] reset failed []
[ 2615.210076] eth3: Link up at 1000 Mbps, full-duplex.
[ 2615.210079] eth3: Pause is enabled (rxfifo: 16384 off: 13312 on: 11776)
[ 2615.319251] br0: port 1(eth3) entering learning state
[ 2625.890020] eth3: no IPv6 routers present
[ 2628.990019] br0: port 2(eth0) entering forwarding state
[ 2630.310021] br0: port 1(eth3) entering forwarding state
[ 8390.012533] [ cut here ]
[ 8390.012552] WARNING: at 
/build/buildd/linux-2.6.32/net/sched/sch_generic.c:261 
dev_watchdog+0x262/0x270()
[ 8390.012558] Hardware name: Ultra20 M2
[ 8390.012562] NETDEV WATCHDOG: eth3 (cassini): transmit queue 0 timed out
[ 8390.012566] Modules linked in: sit tunnel4 binfmt_misc ppdev vboxdrv kvm_amd 
kvm dm_crypt snd_hda_codec_realtek nfsd exportfs nfs lockd nfs_acl auth_rpcgss 
sunrpc snd_hda_intel snd_hda_codec snd_hwdep snd_pcm_oss snd_mixer_oss joydev 
snd_pcm snd_seq_dummy snd_seq_oss snd_seq_midi sctp snd_rawmidi 
snd_seq_midi_event snd_seq snd_timer snd_seq_device crc32c amd64_edac_mod snd 
soundcore bridge stp cassini snd_page_alloc wacom libcrc32c edac_core nvidia(P) 
psmouse sbp2 i2c_nforce2 k8temp shpchp edac_mce_amd serio_raw lp parport usbhid 
hid fbcon tileblit font bitblit softcursor ohci1394 vga16fb vgastate ieee1394 
forcedeth
[ 8390.012661] Pid: 0, comm: swapper Tainted: P   2.6.32-16-generic 
#25-Ubuntu
[ 8390.012666] Call Trace:
[ 8390.012670]  IRQ  [81064f8b] warn_slowpath_common+0x7b/0xc0
[ 8390.012688]  [81065031] warn_slowpath_fmt+0x41/0x50
[ 8390.012695]  [8148bbc2] dev_watchdog+0x262/0x270
[ 8390.012704]  [8101a183] ? native_sched_clock+0x13/0x60
[ 8390.012714]  [81089445] ? sched_clock_local+0x25/0x90
[ 8390.012720]  [8148b960] ? dev_watchdog+0x0/0x270
[ 8390.012727]  [81075907] run_timer_softirq+0x197/0x340
[ 8390.012736]  [810929e0] ? tick_sched_timer+0x0/0xc0
[ 8390.012743]  [8108d743] ? ktime_get+0x63/0xe0
[ 8390.012749]  [8106c637] __do_softirq+0xb7/0x1e0
[ 8390.012756]  [810925ca] ? tick_program_event+0x2a/0x30
[ 8390.012763]  [8101432c] call_softirq+0x1c/0x30
[ 8390.012769]  [81015cf5] do_softirq+0x65/0xa0
[ 8390.012774]  [8106c4d5] irq_exit+0x85/0x90
[ 8390.012783]  [8155bf81] smp_apic_timer_interrupt+0x71/0x9c
[ 8390.012789]  [81013cf3] apic_timer_interrupt+0x13/0x20
[ 8390.012793]  EOI  [81038adb] ? native_safe_halt+0xb/0x10
[ 8390.012806]  [8108d8c6] ? ktime_get_real+0x16/0x50
[ 8390.012814]  [8130853f] ? acpi_idle_do_entry+0x3e/0x67
[ 8390.012820]  [813085da] ? acpi_idle_enter_c1+0x72/0xc1
[ 8390.012827]  [81559ab6] ? notifier_call_chain+0x16/0x90
[ 8390.012835]  [8144dc3a] ? menu_select+0x10a/0x2b0
[ 8390.012841]  [8144cb87] ? cpuidle_idle_call+0xa7/0x140
[ 8390.012850]  [81011eb3] ? cpu_idle+0xb3/0x110
[ 8390.012858]  [81550d59] ? start_secondary+0xa8/0xaa
[ 8390.012863] ---[ end trace dcdbb9746a7e1964 ]---
[ 8390.012868] eth3: transmit timed out, resetting
[ 8390.012873] eth3: MIF_STATE[]
[ 8390.012877] eth3: MAC_STATE[]
[ 8390.012889] eth3: TX_STATE[::] 
FIFO[::] SM1[] SM2[]
[ 8390.012897] eth3: RX_STATE[::]
[ 8390.012904] eth3: HP_STATE[:::]
[ 8390.022518] eth3: sw reset failed.
[ 8390.022518] eth3: mac tx[-1]/rx[-1] reset failed []
[ 8390.214731] eth3: mac tx[-1]/rx[-1] reset failed []
[ 8390.214731] eth3: PCS link down.
[ 8390.353644] br0: port 1(eth3) entering disabled state
[ 8392.212589] eth3: Link up at 1000 Mbps, full-duplex.
[ 8392.212597] eth3: Pause is enabled (rxfifo: 16384 off: 13312 on: 11776)
[ 8392.215006] br0: port 1(eth3) entering learning state
[ 8407.212524] br0: port 1(eth3) entering forwarding state


$ lspci -s 02:00.0 -vv
02:00.0 Ethernet controller: Sun Microsystems Computer Corp. Cassini 
10/100/1000 (rev 20)
Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap- 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=slow TAbort- TAbort- 
MAbort- SERR- PERR- INTx-
Interrupt: pin A routed to IRQ 18
Region 0: [virtual] Memory at d020 (32-bit, non-prefetchable) 
[disabled] [size=2M]
[virtual] Expansion ROM at d040 [disabled] [size=1M]
Kernel driver in use: cassini
Kernel modules: cassini

ProblemType: Bug
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21.
AplayDevices:
  List of PLAYBACK Hardware Devices 
 card 0: NVidia [HDA NVidia], device 0: ALC883 Analog [ALC883 Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
Architecture: amd64

[Bug 545334] Re: 2.6.32-16-generic: oops when using cassini ethernet adapter

2010-03-23 Thread Daniel van Eeden

** Attachment added: AlsaDevices.txt
   http://launchpadlibrarian.net/41759078/AlsaDevices.txt

** Attachment added: ArecordDevices.txt
   http://launchpadlibrarian.net/41759079/ArecordDevices.txt

** Attachment added: BootDmesg.txt
   http://launchpadlibrarian.net/41759080/BootDmesg.txt

** Attachment added: Card0.Amixer.values.txt
   http://launchpadlibrarian.net/41759081/Card0.Amixer.values.txt

** Attachment added: Card0.Codecs.codec.0.txt
   http://launchpadlibrarian.net/41759082/Card0.Codecs.codec.0.txt

** Attachment added: CurrentDmesg.txt
   http://launchpadlibrarian.net/41759083/CurrentDmesg.txt

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/41759084/Dependencies.txt

** Attachment added: IwConfig.txt
   http://launchpadlibrarian.net/41759085/IwConfig.txt

** Attachment added: Lspci.txt
   http://launchpadlibrarian.net/41759086/Lspci.txt

** Attachment added: Lsusb.txt
   http://launchpadlibrarian.net/41759087/Lsusb.txt

** Attachment added: PciMultimedia.txt
   http://launchpadlibrarian.net/41759088/PciMultimedia.txt

** Attachment added: ProcCpuinfo.txt
   http://launchpadlibrarian.net/41759089/ProcCpuinfo.txt

** Attachment added: ProcInterrupts.txt
   http://launchpadlibrarian.net/41759090/ProcInterrupts.txt

** Attachment added: ProcModules.txt
   http://launchpadlibrarian.net/41759091/ProcModules.txt

** Attachment added: UdevDb.txt
   http://launchpadlibrarian.net/41759092/UdevDb.txt

** Attachment added: UdevLog.txt
   http://launchpadlibrarian.net/41759093/UdevLog.txt

** Attachment added: UserAsoundrc.txt
   http://launchpadlibrarian.net/41759094/UserAsoundrc.txt

** Attachment added: WifiSyslog.txt
   http://launchpadlibrarian.net/41759095/WifiSyslog.txt

-- 
2.6.32-16-generic: oops when using cassini ethernet adapter
https://bugs.launchpad.net/bugs/545334
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 523983] Re: tracker-search-tool list the application name numerous times in the details

2010-02-18 Thread Daniel van Eeden
Formatting of the categories is also not done in a very nice way.

-- 
tracker-search-tool list the application name numerous times in the details
https://bugs.launchpad.net/bugs/523983
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 523983] Re: tracker-search-tool list the application name numerous times in the details

2010-02-18 Thread Daniel van Eeden

** Attachment added: Screenshot
   http://launchpadlibrarian.net/39373169/tracker-search-tool-multiple.png

-- 
tracker-search-tool list the application name numerous times in the details
https://bugs.launchpad.net/bugs/523983
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 523983] [NEW] tracker-search-tool list the application name numerous times in the details

2010-02-18 Thread Daniel van Eeden
Public bug reported:

Binary package hint: tracker

If trackers searches for the Sudoku application then it lists
'Sudoku|Sudoku|Sudoku|Sudoku' in the details.

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

-- 
tracker-search-tool list the application name numerous times in the details
https://bugs.launchpad.net/bugs/523983
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 111268] Re: Support different wallpaper for each workspace

2009-12-01 Thread Daniel van Eeden
Work-around: Use Wallpapoz.
http://wallpapoz.akbarhome.com/

-- 
Support different wallpaper for each workspace
https://bugs.launchpad.net/bugs/111268
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 405638] [NEW] ia32-apt-get core dump

2009-07-27 Thread Daniel van Eeden
Public bug reported:

Binary package hint: ia32-apt-get

apt-get: update
Get:1 http://security.ubuntu.com jaunty-security Release.gpg [189B]
Ign http://security.ubuntu.com jaunty-security/main Translation-en_US  
Ign http://security.ubuntu.com jaunty-security/restricted Translation-en_US
Ign http://security.ubuntu.com jaunty-security/universe Translation-en_US  
Ign http://security.ubuntu.com jaunty-security/multiverse Translation-en_US
Get:2 http://security.ubuntu.com jaunty-security Release [49.6kB]  
Get:3 http://archive.canonical.com jaunty Release.gpg [189B]   
Ign http://archive.canonical.com jaunty/partner Translation-en_US  
Get:4 http://archive.canonical.com jaunty Release [10.5kB] 
Get:5 http://security.ubuntu.com jaunty-security/main Packages [57.9kB]
Get:6 http://archive.canonical.com jaunty/partner Packages [2493B] 
Get:7 http://nl.archive.ubuntu.com jaunty Release.gpg [189B]   
Ign http://nl.archive.ubuntu.com jaunty/main Translation-en_US 
Get:8 http://security.ubuntu.com jaunty-security/restricted Packages [2092B]   
Get:9 http://security.ubuntu.com jaunty-security/main Sources [17.4kB] 
Get:10 http://security.ubuntu.com jaunty-security/restricted Sources [611B]
Get:11 http://security.ubuntu.com jaunty-security/universe Packages [23.1kB]   
Get:12 http://security.ubuntu.com jaunty-security/universe Sources [5238B] 
Get:13 http://security.ubuntu.com jaunty-security/multiverse Packages [14B]
Get:14 http://security.ubuntu.com jaunty-security/multiverse Sources [14B] 
Get:15 http://download.virtualbox.org jaunty Release.gpg [197B]
Ign http://download.virtualbox.org jaunty/non-free Translation-en_US  
Ign http://nl.archive.ubuntu.com jaunty/restricted Translation-en_US 
Ign http://nl.archive.ubuntu.com jaunty/universe Translation-en_US
Get:16 http://archive.canonical.com jaunty/partner Sources [1240B]   
Ign http://nl.archive.ubuntu.com jaunty/multiverse Translation-en_US 
Get:17 http://nl.archive.ubuntu.com jaunty-updates Release.gpg [189B]
Ign http://nl.archive.ubuntu.com jaunty-updates/main Translation-en_US
Ign http://nl.archive.ubuntu.com jaunty-updates/restricted Translation-en_US
Ign http://nl.archive.ubuntu.com jaunty-updates/universe Translation-en_US
Ign http://nl.archive.ubuntu.com jaunty-updates/multiverse Translation-en_US
Get:18 http://nl.archive.ubuntu.com jaunty-backports Release.gpg [189B]
Ign http://nl.archive.ubuntu.com jaunty-backports/main Translation-en_US
Ign http://nl.archive.ubuntu.com jaunty-backports/restricted Translation-en_US
Get:19 http://download.virtualbox.org jaunty Release [3454B]
Ign http://nl.archive.ubuntu.com jaunty-backports/universe Translation-en_US
Ign http://nl.archive.ubuntu.com jaunty-backports/multiverse Translation-en_US
Get:20 http://nl.archive.ubuntu.com jaunty Release [74.6kB]
Get:21 http://download.virtualbox.org jaunty/non-free Packages [1258B]
Get:22 http://nl.archive.ubuntu.com jaunty-updates Release [49.6kB]
Get:23 http://nl.archive.ubuntu.com jaunty-backports Release [49.6kB]
Get:24 http://nl.archive.ubuntu.com jaunty/main Packages [1253kB]
Get:25 http://nl.archive.ubuntu.com jaunty/restricted Packages [8848B] 
Get:26 http://nl.archive.ubuntu.com jaunty/main Sources [555kB]
Get:27 http://nl.archive.ubuntu.com jaunty/restricted Sources [3156B]  
Get:28 http://nl.archive.ubuntu.com jaunty/universe Packages [4757kB]  
Get:29 http://nl.archive.ubuntu.com jaunty/universe Sources [2375kB]   
Get:30 http://nl.archive.ubuntu.com jaunty/multiverse Packages [197kB] 
Get:31 http://nl.archive.ubuntu.com jaunty/multiverse Sources [107kB]  
Get:32 http://nl.archive.ubuntu.com jaunty-updates/main Packages [121kB]   
Get:33 http://nl.archive.ubuntu.com jaunty-updates/restricted Packages [2092B] 
Get:34 http://nl.archive.ubuntu.com jaunty-updates/main Sources [37.8kB]   
Get:35 http://nl.archive.ubuntu.com jaunty-updates/restricted Sources [611B]   
Get:36 http://nl.archive.ubuntu.com jaunty-updates/universe Packages [41.6kB]  
Get:37 http://nl.archive.ubuntu.com jaunty-updates/universe Sources [11.7kB]   
Get:38 http://nl.archive.ubuntu.com jaunty-updates/multiverse Packages [3933B] 
Get:39 http://nl.archive.ubuntu.com jaunty-updates/multiverse Sources [1349B]  
Get:40 http://nl.archive.ubuntu.com jaunty-backports/main Packages [6415B] 
Get:41 http://nl.archive.ubuntu.com jaunty-backports/restricted Packages [14B] 
Get:42 http://nl.archive.ubuntu.com jaunty-backports/universe Packages [7830B] 
Get:43 http://nl.archive.ubuntu.com jaunty-backports/multiverse Packages [14B] 
Get:44 http://nl.archive.ubuntu.com jaunty-backports/main Sources [2569B]  
Get:45 http://nl.archive.ubuntu.com jaunty-backports/restricted Sources [14B]  
Get:46 http://nl.archive.ubuntu.com jaunty-backports/universe 

[Bug 405638] Re: ia32-apt-get core dump

2009-07-27 Thread Daniel van Eeden
$ which apt-get
/usr/bin/apt-get
$ dpkg -S /usr/bin/apt-get
diversion by ia32-apt-get from: /usr/bin/apt-get
diversion by ia32-apt-get to: /usr/bin/apt-get.real
apt, ia32-apt-get: /usr/bin/apt-get
$ dpkg -l apt ia32-apt-get
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name   VersionDescription
+++-==-==-
ii  apt0.7.20.2ubuntu Advanced front-end for dpkg
ii  ia32-apt-get   11ubuntu1  Apt-get and dpkg wrapper for on-the-fly ia32

-- 
ia32-apt-get core dump
https://bugs.launchpad.net/bugs/405638
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 394036] Re: MySQL 5.0.22 Crash on Ubuntu 6.06.2 LTS (SELECT 0+0+0...)

2009-07-01 Thread Daniel van Eeden
I  saw a similair query which seem to crash the MySQL client (version
5.0.22-0ubuntu6.06.11).

mysql SELECT CONCAT('', 

[Bug 394036] Re: MySQL 5.0.22 Crash on Ubuntu 6.06.2 LTS (SELECT 0+0+0...)

2009-07-01 Thread Daniel van Eeden
The above query together with this config crashes the server.

# egrep -v ^($|#) /etc/mysql/my.cnf 
[client]
port= 3306
socket  = /var/run/mysqld/mysqld.sock
[mysqld_safe]
socket  = /var/run/mysqld/mysqld.sock
nice= 0
core-file-size  = unlimited
[mysqld]
core-file
user= mysql
pid-file= /var/run/mysqld/mysqld.pid
socket  = /var/run/mysqld/mysqld.sock
port= 3306
basedir = /usr
datadir = /export/mysql
tmpdir  = /tmp
language= /usr/share/mysql/english
skip-external-locking
old_passwords   = 1
bind-address= 0.0.0.0
key_buffer  = 128M
max_allowed_packet  = 16M
thread_stack= 265K
table_cache = 16M
query_cache_limit   = 1048576
query_cache_size= 128M
query_cache_type= 1
log-bin = /var/log/mysql/mysql-bin.log
expire-logs-days= 20
max_binlog_size = 104857600
skip-bdb
innodb_buffer_pool_size = 64M
[mysqldump]
quick
quote-names
max_allowed_packet  = 16M
[mysql]
[isamchk]
key_buffer  = 16M

-- 
MySQL 5.0.22 Crash on Ubuntu 6.06.2 LTS (SELECT 0+0+0...)
https://bugs.launchpad.net/bugs/394036
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 394036] Re: MySQL 5.0.22 Crash on Ubuntu 6.06.2 LTS (SELECT 0+0+0...)

2009-07-01 Thread Daniel van Eeden
I  saw a similair query which seem to crash the MySQL client (version
5.0.22-0ubuntu6.06.11).

mysql SELECT CONCAT('', 

[Bug 394036] Re: MySQL 5.0.22 Crash on Ubuntu 6.06.2 LTS (SELECT 0+0+0...)

2009-07-01 Thread Daniel van Eeden
The above query together with this config crashes the server.

# egrep -v ^($|#) /etc/mysql/my.cnf 
[client]
port= 3306
socket  = /var/run/mysqld/mysqld.sock
[mysqld_safe]
socket  = /var/run/mysqld/mysqld.sock
nice= 0
core-file-size  = unlimited
[mysqld]
core-file
user= mysql
pid-file= /var/run/mysqld/mysqld.pid
socket  = /var/run/mysqld/mysqld.sock
port= 3306
basedir = /usr
datadir = /export/mysql
tmpdir  = /tmp
language= /usr/share/mysql/english
skip-external-locking
old_passwords   = 1
bind-address= 0.0.0.0
key_buffer  = 128M
max_allowed_packet  = 16M
thread_stack= 265K
table_cache = 16M
query_cache_limit   = 1048576
query_cache_size= 128M
query_cache_type= 1
log-bin = /var/log/mysql/mysql-bin.log
expire-logs-days= 20
max_binlog_size = 104857600
skip-bdb
innodb_buffer_pool_size = 64M
[mysqldump]
quick
quote-names
max_allowed_packet  = 16M
[mysql]
[isamchk]
key_buffer  = 16M

-- 
MySQL 5.0.22 Crash on Ubuntu 6.06.2 LTS (SELECT 0+0+0...)
https://bugs.launchpad.net/bugs/394036
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 392236] Re: MySQL 5.0.22 Crash on Ubuntu 6.06.2 LTS

2009-06-26 Thread Daniel van Eeden
The latter query caused the initial crash, The first is a simplified
query which is using the mysql user database and also crashes

So please use this query on a MySQL 5.0.22 Server on Ubuntu 6.06.2 LTS
SELECT * FROM (SELECT mu.User FROM mysql.user mu UNION SELECT mu.user FROM 
mysql.user mu ORDER BY mu.User) a;

The ORDER BY is causing the crash. I don't think the ORDER BY is
syntactically allowed there.

** Changed in: mysql-dfsg-5.0 (Ubuntu)
   Status: Incomplete = New

-- 
MySQL 5.0.22 Crash on Ubuntu 6.06.2 LTS
https://bugs.launchpad.net/bugs/392236
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 392236] Re: MySQL 5.0.22 Crash on Ubuntu 6.06.2 LTS

2009-06-26 Thread Daniel van Eeden
The latter query caused the initial crash, The first is a simplified
query which is using the mysql user database and also crashes

So please use this query on a MySQL 5.0.22 Server on Ubuntu 6.06.2 LTS
SELECT * FROM (SELECT mu.User FROM mysql.user mu UNION SELECT mu.user FROM 
mysql.user mu ORDER BY mu.User) a;

The ORDER BY is causing the crash. I don't think the ORDER BY is
syntactically allowed there.

** Changed in: mysql-dfsg-5.0 (Ubuntu)
   Status: Incomplete = New

-- 
MySQL 5.0.22 Crash on Ubuntu 6.06.2 LTS
https://bugs.launchpad.net/bugs/392236
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 234780] Re: vim-runtime should depend on vim

2009-06-22 Thread Daniel van Eeden
What I was using is a .vimrc file split in two parts. The top part is
configuring what a users wants and then the magic is done in the second
part.

In the first part i was using this:
let color = true

And in the then in the second part:
if has(syntax)
if color == true
so ${VIMRUNTIME}/syntax/syntax.vim
else
syntax off
set t_Co=0
endif
endif

If vim-runtime is installed together with only vim-tiny then the let
command is not supported, and than the .vimrc fails.

-- 
vim-runtime should depend on vim
https://bugs.launchpad.net/bugs/234780
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 377555] [NEW] MySQL lacks IPv6 support

2009-05-17 Thread Daniel van Eeden
Public bug reported:

Wishlist bug:

MySQL (5.0/5.1) does not have IPv6 support.

See also:
http://forge.mysql.com/worklog/task.php?id=798

** Affects: mysql-dfsg-5.0 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
MySQL lacks IPv6 support
https://bugs.launchpad.net/bugs/377555
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 377555] [NEW] MySQL lacks IPv6 support

2009-05-17 Thread Daniel van Eeden
Public bug reported:

Wishlist bug:

MySQL (5.0/5.1) does not have IPv6 support.

See also:
http://forge.mysql.com/worklog/task.php?id=798

** Affects: mysql-dfsg-5.0 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
MySQL lacks IPv6 support
https://bugs.launchpad.net/bugs/377555
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 181948] Re: exiqgrep: error on messages w/o size

2009-05-15 Thread Daniel van Eeden
** Changed in: exim4 (Debian)
   Importance: Undecided = Unknown

** Changed in: exim4 (Debian)
   Status: New = Unknown

** Changed in: exim4 (Debian)
 Remote watch: None = Debian Bug tracker #528625

-- 
exiqgrep: error on messages w/o size
https://bugs.launchpad.net/bugs/181948
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 376069] [NEW] Unread count in database not consistend

2009-05-13 Thread Daniel van Eeden
Public bug reported:

Binary package hint: evolution

I'm using Evolution 2.26.1-0ubuntu1 on Ubuntu 9.04 as IMAP client. The
IMAP server runs Courier IMAP on Debian.

The unread_count in the database is often not in sync with the server
and the state on disk.

An example:
$ sqlite3 folders.db 
SQLite version 3.6.10
Enter .help for instructions
Enter SQL statements terminated with a ;
sqlite .headers ON
sqlite .mode line folders
sqlite SELECT * FROM folders WHERE folder_name='INBOX/mysql';
  folder_name = INBOX/mysql
  version = 14.0
flags = 0
  nextuid = 0
 time = 0
  saved_count = 2
 unread_count = 2
deleted_count = 0
   junk_count = 0
visible_count = 2
jnd_count = 0
bdata = 3 1239302115
sqlite .quit
$ cd folders/INBOX/subfolders/mysql
$ ls -l
total 4
-rw-r--r-- 1 dveeden dveeden 183 2009-05-13 17:24 cmeta
-rw-r--r-- 1 dveeden dveeden   0 2009-05-13 17:27 journal
$

The GUI shows this:
folders: mysql(2)
message list: There are no messages in this folder

The server:
$ cd Maildir/.mysql/
$ find .
.
./tmp
./new
./cur
./maildirfolder
./courierimapacl
./courierimapuiddb
./courierimapkeywords
$

1. The GUI should update the database if the message count in the
database is not 0 and there are no messages in the folder to display.

This happens mostly when I delete (but not expunge) mail using
Evolution, then expunge using some other application.

It does not update when I click refresh in the context menu of the
folder. Connect/Disconnect also doesn't solve the issue.

It does update when I receive new mail in that folder.

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

-- 
Unread count in database not consistend
https://bugs.launchpad.net/bugs/376069
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 376069] Re: Unread count in database not consistend

2009-05-13 Thread Daniel van Eeden
To reproduce:

1. evolution --force-shutdown
2. sqlite3 /path/to/folders.db
3. UPDATE folders SET unread_count='100' WHERE folder_name='Some/Foldername';
4. Start evolution
5. New mail count is wrong
6. Send email to that mailbox to fix.

-- 
Unread count in database not consistend
https://bugs.launchpad.net/bugs/376069
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 368881] Re: dvdauthor crashed with SIGSEGV

2009-05-13 Thread Daniel van Eeden
** Visibility changed to: Public

-- 
dvdauthor crashed with SIGSEGV
https://bugs.launchpad.net/bugs/368881
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 368128] Re: mplayer crashed with SIGSEGV on AVCHD (MTS) file

2009-05-13 Thread Daniel van Eeden
** Visibility changed to: Public

-- 
mplayer crashed with SIGSEGV on AVCHD (MTS) file
https://bugs.launchpad.net/bugs/368128
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 182971] Re: Java web start does not work

2009-05-13 Thread Daniel van Eeden
This opensource project is a good testcase for webstart (it's not just a small 
demo, but a real application with 3D, extra libs etc)
http://www.sweethome3d.eu/SweetHome3D.jnlp

-- 
Java web start does not work
https://bugs.launchpad.net/bugs/182971
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 376069] Re: Unread count in database not consistend

2009-05-13 Thread Daniel van Eeden
** Bug watch added: GNOME Bug Tracker #582494
   http://bugzilla.gnome.org/show_bug.cgi?id=582494

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

-- 
Unread count in database not consistend
https://bugs.launchpad.net/bugs/376069
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 174858] Re: 'netstat' doesn't check for sockets using SCTP protocol

2009-05-13 Thread Daniel van Eeden
Related: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=306428

** Bug watch added: Debian Bug tracker #306428
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=306428

-- 
'netstat' doesn't check for sockets using SCTP protocol
https://bugs.launchpad.net/bugs/174858
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 374928] Re: Array-info crash which used with -l option

2009-05-11 Thread Daniel van Eeden
Platform: x86_64
Kernel: 2.6.24-22-server
System: HP ProLiant DL380 G5

-- 
Array-info crash which used with -l option
https://bugs.launchpad.net/bugs/374928
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 374928] [NEW] Array-info crash which used with -l option

2009-05-11 Thread Daniel van Eeden
Public bug reported:

Binary package hint: array-info

Array info version 0.15-1 on Ubuntu 8.04.02

# /usr/sbin/array-info -ld /dev/cciss/c0d1
*** glibc detected *** /usr/sbin/array-info: malloc(): memory corruption: 
0x00603050 ***
=== Backtrace: =
/lib/libc.so.6[0x7fb3c52c5a14]
/lib/libc.so.6(__libc_malloc+0x90)[0x7fb3c52c7360]
/usr/sbin/array-info[0x401757]
/usr/lib/array-info/plugins/cciss_info.so(compaq_ctrl_infos+0x52)[0x7fb3c4c4a79e]
/usr/lib/array-info/plugins/cciss_info.so[0x7fb3c4c4a20e]
/usr/sbin/array-info[0x4011b0]
/usr/sbin/array-info[0x401603]
/lib/libc.so.6(__libc_start_main+0xf4)[0x7fb3c526f1c4]
/usr/sbin/array-info[0x400bf9]
=== Memory map: 
0040-00403000 r-xp  68:05 360455 
/usr/sbin/array-info
00602000-00603000 rw-p 2000 68:05 360455 
/usr/sbin/array-info
00603000-00625000 rw-p 00603000 00:00 0  [heap]
7fb3c000-7fb3c0021000 rw-p 7fb3c000 00:00 0 
7fb3c0021000-7fb3c400 ---p 7fb3c0021000 00:00 0 
7fb3c4a3b000-7fb3c4a48000 r-xp  68:01 226213 
/lib/libgcc_s.so.1
7fb3c4a48000-7fb3c4c48000 ---p d000 68:01 226213 
/lib/libgcc_s.so.1
7fb3c4c48000-7fb3c4c49000 rw-p d000 68:01 226213 
/lib/libgcc_s.so.1
7fb3c4c49000-7fb3c4c4c000 r-xp  68:05 196926 
/usr/lib/array-info/plugins/cciss_info.so
7fb3c4c4c000-7fb3c4e4b000 ---p 3000 68:05 196926 
/usr/lib/array-info/plugins/cciss_info.so
7fb3c4e4b000-7fb3c4e4c000 rw-p 2000 68:05 196926 
/usr/lib/array-info/plugins/cciss_info.so
7fb3c4e4c000-7fb3c4e4e000 r-xp  68:05 196925 
/usr/lib/array-info/plugins/md_info.so
7fb3c4e4e000-7fb3c504d000 ---p 2000 68:05 196925 
/usr/lib/array-info/plugins/md_info.so
7fb3c504d000-7fb3c504e000 rw-p 1000 68:05 196925 
/usr/lib/array-info/plugins/md_info.so
7fb3c504e000-7fb3c505 r-xp  68:05 196927 
/usr/lib/array-info/plugins/ida_info.so
7fb3c505-7fb3c525 ---p 2000 68:05 196927 
/usr/lib/array-info/plugins/ida_info.so
7fb3c525-7fb3c5251000 rw-p 2000 68:05 196927 
/usr/lib/array-info/plugins/ida_info.so
7fb3c5251000-7fb3c53a9000 r-xp  68:01 226219 
/lib/libc-2.7.so
7fb3c53a9000-7fb3c55a9000 ---p 00158000 68:01 226219 
/lib/libc-2.7.so
7fb3c55a9000-7fb3c55ac000 r--p 00158000 68:01 226219 
/lib/libc-2.7.so
7fb3c55ac000-7fb3c55ae000 rw-p 0015b000 68:01 226219 
/lib/libc-2.7.so
7fb3c55ae000-7fb3c55b3000 rw-p 7fb3c55ae000 00:00 0 
7fb3c55b3000-7fb3c55b5000 r-xp  68:01 226222 
/lib/libdl-2.7.so
7fb3c55b5000-7fb3c57b5000 ---p 2000 68:01 226222 
/lib/libdl-2.7.so
7fb3c57b5000-7fb3c57b7000 rw-p 2000 68:01 226222 
/lib/libdl-2.7.so
7fb3c57b7000-7fb3c57d4000 r-xp  68:01 226216 
/lib/ld-2.7.so
7fb3c59cb000-7fb3c59cd000 rw-p 7fb3c59cb000 00:00 0 
7fb3c59d1000-7fb3c59d4000 rw-p 7fb3c59d1000 00:00 0 
7fb3c59d4000-7fb3c59d6000 rw-p 0001d000 68:01 226216 
/lib/ld-2.7.so
7fffcd9c1000-7fffcd9d6000 rw-p 7ffea000 00:00 0  [stack]
7fffcd9fe000-7fffcda0 r-xp 7fffcd9fe000 00:00 0  [vdso]
ff60-ff601000 r-xp  00:00 0  
[vsyscall]
Aborted


# gdb --args /usr/sbin/array-info -ld /dev/cciss/c0d1
GNU gdb 6.8-debian
Copyright (C) 2008 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show copying
and show warranty for details.
This GDB was configured as x86_64-linux-gnu...
(gdb) r
Starting program: /usr/sbin/array-info -ld /dev/cciss/c0d1
*** glibc detected *** /usr/sbin/array-info: malloc(): memory corruption: 
0x00603050 ***
=== Backtrace: =
/lib/libc.so.6[0x7f5d371f7a14]
/lib/libc.so.6(__libc_malloc+0x90)[0x7f5d371f9360]
/usr/sbin/array-info[0x401757]
/usr/lib/array-info/plugins/cciss_info.so(compaq_ctrl_infos+0x52)[0x7f5d36b7c79e]
/usr/lib/array-info/plugins/cciss_info.so[0x7f5d36b7c20e]
/usr/sbin/array-info[0x4011b0]
/usr/sbin/array-info[0x401603]
/lib/libc.so.6(__libc_start_main+0xf4)[0x7f5d371a11c4]
/usr/sbin/array-info[0x400bf9]
=== Memory map: 
0040-00403000 r-xp  68:05 360455 
/usr/sbin/array-info
00602000-00603000 rw-p 2000 68:05 360455 
/usr/sbin/array-info
00603000-00625000 rw-p 00603000 00:00 0  [heap]
7f5d3000-7f5d30021000 rw-p 7f5d3000 00:00 0 

[Bug 374928] Re: Array-info crash which used with -l option

2009-05-11 Thread Daniel van Eeden
Valgrind output (logfile will be uploaded):

# G_SLICE=always-malloc G_DEBUG=gc-friendly  valgrind -v --tool=memcheck 
--leak-check=full --num-callers=40 --log-file=/tmp/valgrind.log 
/usr/sbin/array-info -ld /dev/cciss/c0d1
Unknown Controller id 0x3234103c
Firmware revision : 2.08
Rom revision  : 2.08
2  logical drives configured.

Logical drive  1 :
  Fault tolerance : RAID 1 (Mirroring)
  Size: 205.00 GiB (429925920 blocks of 512 bytes)
  Status  : Logical drive is using interim recovery mode
(100.00% done)

-- 
Array-info crash which used with -l option
https://bugs.launchpad.net/bugs/374928
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 374928] Re: Array-info crash which used with -l option

2009-05-11 Thread Daniel van Eeden
# ls -l /dev/cciss/
total 0
brw-rw 1 root disk 104,  0 Feb  3 14:20 c0d0
brw-rw 1 root disk 104,  1 Feb  3 14:20 c0d0p1
brw-rw 1 root disk 104,  2 Feb  3 14:20 c0d0p2
brw-rw 1 root disk 104,  3 Feb  3 14:20 c0d0p3
brw-rw 1 root disk 104,  5 Feb  3 14:20 c0d0p5
brw-rw 1 root disk 104,  6 Feb  3 14:21 c0d0p6
brw-rw 1 root disk 104,  7 Feb  3 14:21 c0d0p7
brw-rw 1 root disk 104,  8 Feb  3 14:21 c0d0p8
brw-rw 1 root disk 104, 16 Feb  3 14:20 c0d1
brw-rw 1 root disk 104, 17 Feb  3 14:20 c0d1p1

-- 
Array-info crash which used with -l option
https://bugs.launchpad.net/bugs/374928
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 374928] Re: Array-info crash which used with -l option

2009-05-11 Thread Daniel van Eeden

** Attachment added: Valgrind log
   http://launchpadlibrarian.net/26589273/valgrind.log

-- 
Array-info crash which used with -l option
https://bugs.launchpad.net/bugs/374928
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 374949] [NEW] Missing newline in usage info

2009-05-11 Thread Daniel van Eeden
Public bug reported:

Binary package hint: arrayprobe

Please apply this patch


--- arrayprobe-2.0.orig/probe.c 2009-05-11 17:27:46.0 +0200
+++ arrayprobe-2.0/probe.c  2009-05-11 17:28:18.0 +0200
@@ -512,7 +512,7 @@
/* printf ( -s : simultion mode (use with 
-f)\n); */
printf ( -r : report (verbose) mode\n);
printf ( -o : only read new events (since 
last run, CCISS devices only)\n);
-   printf ( -i : force ida ioctls. (use with 
-f if the device is supported by the ida driver));
+   printf ( -i : force ida ioctls. (use with 
-f if the device is supported by the ida driver)\n);
exit (1);
}
}


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

-- 
Missing newline in usage info
https://bugs.launchpad.net/bugs/374949
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 374949] Re: Missing newline in usage info

2009-05-11 Thread Daniel van Eeden
This is fixed in https://launchpad.net/ubuntu/+source/arrayprobe/2.0-3
but not backported to LTS

-- 
Missing newline in usage info
https://bugs.launchpad.net/bugs/374949
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 375088] [NEW] IPv6 addresses are hidden

2009-05-11 Thread Daniel van Eeden
Public bug reported:

Binary package hint: network-manager

The connection information dialog hides IPv6 addresses from the user.

It should at least show global dynamic addresses:
$ ip a l | egrep (^[0-9]|inet6.*scope global)
1: lo: LOOPBACK,UP,LOWER_UP mtu 16436 qdisc noqueue state UNKNOWN 
2: eth0: NO-CARRIER,BROADCAST,MULTICAST,UP mtu 1500 qdisc pfifo_fast state 
DOWN qlen 1000
3: eth1: NO-CARRIER,BROADCAST,MULTICAST,UP mtu 1500 qdisc pfifo_fast state 
DOWN qlen 1000
4: eth3: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc pfifo_fast state UP 
qlen 1000
inet6 2001:654:62d:0:321:baaf:fe5e:88b/64 scope global dynamic 
5: virbr0: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc noqueue state 
UNKNOWN 
6: vboxnet0: BROADCAST,MULTICAST mtu 1500 qdisc noop state DOWN qlen 1000
8: pan0: BROADCAST,MULTICAST mtu 1500 qdisc noop state DOWN

** Affects: network-manager (Ubuntu)
 Importance: Undecided
 Status: New

-- 
IPv6 addresses are hidden
https://bugs.launchpad.net/bugs/375088
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 368769] [NEW] Crash when opening AVCHD file

2009-04-28 Thread Daniel van Eeden
Public bug reported:

Binary package hint: avidemux

When opening a .MTS (AVCHD) file which came from a Sony HandyCam HDR-TG3

Avidemux 1:2.4.4-0.0ubuntu1 on Ubuntu 9.04 x86_64


$ avidemux
***
  Avidemux v2.4.4
***
 http://www.avidemux.org
 Code  : Mean, JSC, Gruntster 
 GFX   : Nestor Di , nesto...@augcyl.org
 Design: Jakub Misak
 FreeBSD   : Anish Mistry, amis...@am-productions.biz
 Audio : Mihail Zenkov
 MacOsX: Kuisathaverat
 Win32 : Gruntster

Compiler: GCC 4.3.3
Build Target: Linux (x86-64)
User Interface: GTK+ (2.16.1)

Large file available: 1 offset

Initialising prefs
Directory /home/dveeden/.avidemux exists.Good.
Using /home/dveeden/.avidemux as base directory for prefs/jobs/...
[cpuCaps]Checking CPU capabilities
MMX detected 
3DNOW detected 
MMXEXT detected 
SSE detected 
SSE2 detected 
SSE3 detected 
[cpuCaps]End of CPU capabilities check (cpuMask :)

 Registering Encoders
*
MJPEG encoder registered
Xvid-4 encoder registered
FFmpeg encoder registered

3 encoder(s) registered

[SDL] Version: 1.2.13
[SDL] Initialisation succeeded
[SDL] Video Driver: x11


[Locale] setlocale en_US.UTF-8
[Locale] Textdomain was messages
[Locale] Textdomain is now avidemux
[Locale] Files for avidemux appear to be in /usr/share/locale
[Locale] Test: _File

Initializing Dithering tables
[xvid] Initializing global Xvid 4
[xvid] Build: xvid-1.1.2
[xvid] SIMD supported: (cf)
MMX
MMXEXT
SSE
SSE2
Found 20 video encoder
Found 9 audio encoder
Found 13 Format 
Directory /home/dveeden/.avidemux/custom exists.Good.
No custom script
Found 0 custom scripts, adding them
Menu built
The screen seems to be 1280 x 1024 px
/dev/input/event0: Permission denied
/dev/input/event1: Permission denied
Not interested in /dev/input/event2: Macintosh mouse button emulation (bus 0017 
vendor 0001 product 0001 version 0100)
Not interested in /dev/input/event3: PS/2+USB Mouse (bus 0003 vendor 1267 
product 0213 version 0111)
/dev/input/event4: Permission denied
/dev/input/event5: Permission denied
/dev/input/event6: Permission denied
No physical Jog/Shuttle device found.
Initializing postproc
Deleting post proc
updating post proc
Enabled type:3 strength:3

 Registering Filters
*

Using real audio device
Spidermonkey initialized.
No crash file (/home/dveeden/.avidemux/crash.js)

 Canonizing null string ??? (/home/dveeden/Desktop/SONY_VIDEO/)
20794d01 - 20794d01
Probing : /home/dveeden/Desktop/SONY_VIDEO/00062.MTS
There was several files, but dont append was forced

Simple loading: 
 file: /home/dveeden/Desktop/SONY_VIDEO/00062.MTS, size: 3735552
 found 1 files 
Done 
Detected as TS2 file
Probe says it is mpeg
594d4441 - 594d4441
 
 New mpeg index file detected..

  opening d2v file : /home/dveeden/Desktop/SONY_VIDEO/00062.MTS.idx
For file :/home/dveeden/Desktop/SONY_VIDEO/00062.MTS
Pic  :32x768, 1674909937 fps
#Gop :11
#Img :286
Ts: Using 1011 as pid for track 0
Creating mpeg TS demuxer  main Pid: 1011 , pes id :0, packet size=192
There was several files, but dont append was forced

Simple loading: 
 file: /home/dveeden/Desktop/SONY_VIDEO/00062.MTS, size: 3735552
 found 1 files 
Done 
Dropping 0 last B/P frames
 Creating start sequence (772)..
Mmm cound not find a gop start.
Reordering mpeg frames
Renumbered Gop  1 /11

  opening dmx file for audio track : 
/home/dveeden/Desktop/SONY_VIDEO/00062.MTS.idx
Saving crash file to /home/dveeden/.avidemux/crash.js

 **Saving script project **

*** BACKTRACK **
Frame  0: avidemux(ADM_backTrack+0x5a) [0x5d817a] 
Frame  1: avidemux(_ZN14dmxAudioStream4openEPKc+0x431) [0x5a7051] 
()
Frame  2: avidemux(_ZN9dmxHeader4openEPKc+0x9c4) [0x5a5d74] 
()
Frame  3: avidemux(_ZN12ADM_Composer7addFileEPKch8fileType+0x277) [0x4c8ec7] 
()
Frame  4: avidemux(_ZN12ADM_Composer7addFileEPKch8fileType+0x224) [0x4c8e74] 
()
Frame  5: avidemux(_Z10A_openAvi2PKch+0xd9) [0x4af9a9] 
A_openAvi2()
Frame  6: avidemux(_Z13fileReadWritePFvPKcEiS0_+0x73) [0x5d9093] 
fileReadWrite()
Frame  7: avidemux [0xa87d50] 
Frame  8: avidemux(_Z12HandleAction6Action+0x14a6) [0x4b2136] 
HandleAction()
Frame  9: avidemux(_Z11guiCallbackP12_GtkMenuItemPv+0x37) [0xa7a957] 
guiCallback(_GtkMenuItem,)
Frame 10: /usr/lib/libgobject-2.0.so.0(g_closure_invoke+0x16d) [0x7f01b7b6827d] 
Frame 11: /usr/lib/libgobject-2.0.so.0 [0x7f01b7b7de3b] 
Frame 12: /usr/lib/libgobject-2.0.so.0(g_signal_emit_valist+0x7e2) 
[0x7f01b7b7f432] 
Frame 13: /usr/lib/libgobject-2.0.so.0(g_signal_emit_by_name+0x20c) 
[0x7f01b7b7f74c] 
Frame 14: /usr/lib/libgobject-2.0.so.0(g_closure_invoke+0x16d) [0x7f01b7b6827d] 
Frame 15: /usr/lib/libgobject-2.0.so.0 [0x7f01b7b7de3b] 
Frame 16: 

[Bug 67786] Re: ipw2200 sometimes uses 100% CPU on resume

2009-02-23 Thread Daniel van Eeden
I'm encountering the same issue.

I'm using a Thinkpad T43 with Ubuntu 8.10.

It hapens once a week or so. 
cpu usage will drop after a modprobe -r ipw2200; modprobe ipw2200

$ uname -a
Linux thinkpad 2.6.27-11-generic #1 SMP Thu Jan 29 19:24:39 UTC 2009 i686 
GNU/Linux
$ cat /proc/version_signature
Ubuntu 2.6.27-11.27-generic
$ lspci -vvnn
00:00.0 Host bridge [0600]: Intel Corporation Mobile 915GM/PM/GMS/910GML 
Express Processor to DRAM Controller [8086:2590] (rev 03)
Subsystem: IBM Device [1014:0575]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort+ SERR- PERR- INTx-
Latency: 0
Capabilities: access denied
Kernel modules: intel-agp

00:01.0 PCI bridge [0604]: Intel Corporation Mobile 915GM/PM Express PCI 
Express Root Port [8086:2591] (rev 03)
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort- SERR- PERR- INTx-
Latency: 0, Cache Line Size: 32 bytes
Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
I/O behind bridge: 3000-3fff
Memory behind bridge: b010-b01f
Prefetchable memory behind bridge: c000-c7ff
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort+ SERR- PERR-
BridgeCtl: Parity- SERR- NoISA+ VGA+ MAbort- Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: access denied
Kernel driver in use: pcieport-driver
Kernel modules: shpchp

00:1c.0 PCI bridge [0604]: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 
Family) PCI Express Port 1 [8086:2660] (rev 03)
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort- SERR- PERR- INTx-
Latency: 0, Cache Line Size: 32 bytes
Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
Memory behind bridge: b020-b02f
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort+ SERR- PERR-
BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: access denied
Kernel driver in use: pcieport-driver
Kernel modules: shpchp

00:1c.2 PCI bridge [0604]: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 
Family) PCI Express Port 3 [8086:2664] (rev 03)
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort- SERR- PERR- INTx-
Latency: 0, Cache Line Size: 32 bytes
Bus: primary=00, secondary=03, subordinate=0a, sec-latency=0
I/O behind bridge: 4000-4fff
Memory behind bridge: b200-b3ff
Prefetchable memory behind bridge: c800-c80f
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort- SERR- PERR-
BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: access denied
Kernel driver in use: pcieport-driver
Kernel modules: shpchp

00:1d.0 USB Controller [0c03]: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 
Family) USB UHCI #1 [8086:2658] (rev 03)
Subsystem: IBM Device [1014:0565]
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium TAbort- 
TAbort- MAbort- SERR- PERR- INTx-
Latency: 0
Interrupt: pin A routed to IRQ 16
Region 4: I/O ports at 1800 [size=32]
Kernel driver in use: uhci_hcd
Kernel modules: uhci-hcd

00:1d.1 USB Controller [0c03]: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 
Family) USB UHCI #2 [8086:2659] (rev 03)
Subsystem: IBM Device [1014:0565]
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium TAbort- 
TAbort- MAbort- SERR- PERR- INTx-
Latency: 0
Interrupt: pin B routed to IRQ 17
Region 4: I/O ports at 1820 [size=32]
Kernel driver in use: uhci_hcd
Kernel modules: uhci-hcd

00:1d.2 USB Controller [0c03]: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 
Family) USB UHCI #3 [8086:265a] (rev 03)
Subsystem: IBM Device [1014:0565]
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-

[Bug 330281] Re: Migrate to Smart Playlists; System.NullReferenceException

2009-02-19 Thread Daniel van Eeden
*** This bug is a duplicate of bug 330278 ***
https://bugs.launchpad.net/bugs/330278

I've upgraded to the Intrepid PPA version.  (from 1.2.1-3ubuntu1
to1.4.2-1~intrepid1)

Problem 1 (LP #330278): 
  Fixed. Disconnecting a N73 in Media Player mode no longer crashes Banshee
  Please backport this fix to Ubuntu 8.10 (and other impacted releases which 
are still in supported state)

Problem 2 (LP #330281): 
  Smart Playlist System.NullReferenceException still exists.

LP #330281 is marked as a duplicate of LP #330278 which it isn't.

-- 
Migrate to Smart Playlists; System.NullReferenceException
https://bugs.launchpad.net/bugs/330281
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 330281] Re: Migrate to Smart Playlists; System.NullReferenceException

2009-02-19 Thread Daniel van Eeden
*** This bug is a duplicate of bug 330278 ***
https://bugs.launchpad.net/bugs/330278

Reproduced with 1.4.2-1~intrepid1:
$ banshee
[Info  09:09:00.176] Running Banshee 1.4.2: [Ubuntu 8.10 (linux-gnu, i486) @ 
2009-01-22 07:54:13 UTC]
[Error 09:09:01.750] Unable to Migrate Smart Playlists - Please file a bug with 
this error: System.NullReferenceException: Object reference not set to an 
instance of an object
  at Banshee.SmartPlaylist.Migrator.ParseCondition (System.String value) 
[0x0] 
  at Banshee.SmartPlaylist.Migrator.Migrate (Int32 dbid, System.String Name, 
System.String Condition, System.String OrderBy, System.String LimitNumber, 
System.String LimitCriterion) [0x0] 
  at Banshee.SmartPlaylist.Migrator.MigrateAll () [0x0] 
[Info  09:09:02.168] All services are started 1.781299s
[Info  09:09:03.835] nereid Client Started

-- 
Migrate to Smart Playlists; System.NullReferenceException
https://bugs.launchpad.net/bugs/330281
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 330278] Re: Segfault on Nokia N73 disconnect

2009-02-19 Thread Daniel van Eeden
I've upgraded to the Intrepid PPA version.  (from 1.2.1-3ubuntu1
to1.4.2-1~intrepid1)

Problem 1 (LP #330278): 
  Fixed. Disconnecting a N73 in Media Player mode no longer crashes Banshee
  Please backport this fix to Ubuntu 8.10 (and other impacted releases which 
are still in supported state)

Problem 2 (LP #330281): 
  Smart Playlist System.NullReferenceException still exists.

LP #330281 is marked as a duplicate of LP #330278 which it isn't.

-- 
Segfault on Nokia N73 disconnect
https://bugs.launchpad.net/bugs/330278
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 331434] [NEW] Crash when closing video window

2009-02-19 Thread Daniel van Eeden
Public bug reported:

Binary package hint: banshee

1. Start banshee
2. Start playback of a video
3. Close the video playback window
4. *Crash*


$ banshee
[Info  09:15:27.212] Running Banshee 1.4.2: [Ubuntu 8.10 (linux-gnu, i486) @ 
2009-01-22 07:54:13 UTC]
[Error 09:15:28.781] Unable to Migrate Smart Playlists - Please file a bug with 
this error: System.NullReferenceException: Object reference not set to an 
instance of an object
  at Banshee.SmartPlaylist.Migrator.ParseCondition (System.String value) 
[0x0] 
  at Banshee.SmartPlaylist.Migrator.Migrate (Int32 dbid, System.String Name, 
System.String Condition, System.String OrderBy, System.String LimitNumber, 
System.String LimitCriterion) [0x0] 
  at Banshee.SmartPlaylist.Migrator.MigrateAll () [0x0] 
[Info  09:15:29.119] All services are started 1.697433s
[Info  09:15:31.374] nereid Client Started

(Banshee:8385): Gdk-WARNING **: 
/build/buildd/gtk+2.0-2.14.4/gdk/x11/gdkdrawable-x11.c:878 drawable is not a 
pixmap or window
Banshee: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0.


Version: 1.4.2-1~intrepid1

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

-- 
Crash when closing video window
https://bugs.launchpad.net/bugs/331434
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 331434] Re: Crash when closing video window

2009-02-19 Thread Daniel van Eeden
It happens all the time

** Changed in: banshee (Ubuntu)
   Status: Incomplete = New

-- 
Crash when closing video window
https://bugs.launchpad.net/bugs/331434
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 331434] Re: Crash when closing video window

2009-02-19 Thread Daniel van Eeden
Memory info with banshee running.
$ cat /proc/meminfo | grep MemFree
MemFree:618116 kB

The amount of free memory doesn't make a difference

I'm testing on a Thinkpad T43 with 2G RAM

The GPU:
$ lspci -s 01:00.0 -v
01:00.0 VGA compatible controller: ATI Technologies Inc M22 [Mobility Radeon 
X300]
Subsystem: IBM Device 056e
Flags: bus master, fast devsel, latency 0, IRQ 16
Memory at c000 (32-bit, prefetchable) [size=128M]
I/O ports at 3000 [size=256]
Memory at b010 (32-bit, non-prefetchable) [size=64K]
[virtual] Expansion ROM at b012 [disabled] [size=128K]
Capabilities: access denied
Kernel modules: radeonfb

XGL  is disabled by creating the following empty file
~/.config/xserver-xgl/disable

I'm not using compiz

I'm using the driver from xserver-xorg-video-radeon

-- 
Crash when closing video window
https://bugs.launchpad.net/bugs/331434
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 330281] Re: Migrate to Smart Playlists; System.NullReferenceException

2009-02-19 Thread Daniel van Eeden

** Attachment added: Output from: banshee-1 --debug
   http://launchpadlibrarian.net/22887817/banshee-1-debug.txt

-- 
Migrate to Smart Playlists; System.NullReferenceException
https://bugs.launchpad.net/bugs/330281
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 330281] Re: Migrate to Smart Playlists; System.NullReferenceException

2009-02-19 Thread Daniel van Eeden

** Attachment added: Output from: banshee-1 --debug-sql
   http://launchpadlibrarian.net/22887827/banshee-1-debug-sql.txt

-- 
Migrate to Smart Playlists; System.NullReferenceException
https://bugs.launchpad.net/bugs/330281
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 330281] Re: Migrate to Smart Playlists; System.NullReferenceException

2009-02-19 Thread Daniel van Eeden
This is where the error occurs:

[Debug 22:32:37.577] Executed in 0ms BEGIN
[Debug 22:32:37.580] Executed in 0ms SELECT SmartPlaylistID, Name, Condition, 
OrderBy, LimitNumber, LimitCriterion FROM CoreSmartPlaylists
[Debug 22:32:37.609] Executed in 0ms 
UPDATE CoreSmartPlaylists
SET Name = 'Unheard',
Condition = 'requestquery 
banshee-version=1equalsfield name=playcount 
/int0/int/equals/query/request',
OrderBy = NULL,
LimitNumber = NULL,
LimitCriterion = 'songs'
WHERE SmartPlaylistID = 1
[Debug 22:32:37.610] Migrated Smart Playlist Unheard
[Debug 22:32:37.611] Executed in 0ms 
UPDATE CoreSmartPlaylists
SET Name = 'High Rating',
Condition = 'requestquery 
banshee-version=1greaterThanfield name=rating 
/int3/int/greaterThan/query/request',
OrderBy = NULL,
LimitNumber = NULL,
LimitCriterion = 'songs'
WHERE SmartPlaylistID = 2
[Debug 22:32:37.611] Migrated Smart Playlist High Rating
[Debug 22:32:37.618] Executed in 1ms ROLLBACK
[Error 22:32:37.621] Unable to Migrate Smart Playlists - Please file a bug with 
this error: System.NullReferenceException: Object reference not set to an 
instance of an object
  at Banshee.SmartPlaylist.Migrator.ParseCondition (System.String value) 
[0x0] 
  at Banshee.SmartPlaylist.Migrator.Migrate (Int32 dbid, System.String Name, 
System.String Condition, System.String OrderBy, System.String LimitNumber, 
System.String LimitCriterion) [0x0] 
  at Banshee.SmartPlaylist.Migrator.MigrateAll () [0x0]

-- 
Migrate to Smart Playlists; System.NullReferenceException
https://bugs.launchpad.net/bugs/330281
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 330281] Re: Migrate to Smart Playlists; System.NullReferenceException

2009-02-19 Thread Daniel van Eeden
A dump from the table which is having the issues:

$ sqlite3 .config/banshee-1/banshee.db 
SQLite version 3.5.9
Enter .help for instructions
sqlite .dump CoreSmartPlaylists
BEGIN TRANSACTION;
CREATE TABLE CoreSmartPlaylists (
PrimarySourceID INTEGER,
SmartPlaylistID INTEGER PRIMARY KEY,
NameTEXT NOT NULL,
Condition   TEXT,
OrderBy TEXT,
LimitNumber TEXT,
LimitCriterion  TEXT,
CachedCount INTEGER
, IsTemporary INTEGER DEFAULT 0);
INSERT INTO CoreSmartPlaylists VALUES(1,1,'Unheard',' (NumberOfPlays = 0) 
',NULL,NULL,NULL,6729,0);
INSERT INTO CoreSmartPlaylists VALUES(1,2,'High Rating',' (Rating  3) 
',NULL,NULL,NULL,6729,0);
INSERT INTO CoreSmartPlaylists VALUES(1,3,'Songs from the 90''s',' (Year 
BETWEEN 1990 AND 1999) AND (lower(Title) LIKE ''%%'') AND (lower(AlbumTitle) 
LIKE ''%%'') AND (lower(Genre) LIKE ''%%'') ',NULL,NULL,NULL,6729,0);
INSERT INTO CoreSmartPlaylists VALUES(1,4,'Songs from the 80''s',' (Year 
BETWEEN 1980 AND 1989) ',NULL,NULL,NULL,6729,0);
INSERT INTO CoreSmartPlaylists VALUES(3,5,'Favorites','requestquery 
banshee-version=1greaterThanEqualsfield name=rating 
/int4/int/greaterThanEquals/query/request',NULL,NULL,NULL,0,0);
INSERT INTO CoreSmartPlaylists VALUES(3,6,'Unwatched','requestquery 
banshee-version=1equalsfield name=playcount 
/int0/int/equals/query/request',NULL,NULL,NULL,1,0);
COMMIT;
sqlite .quit

-- 
Migrate to Smart Playlists; System.NullReferenceException
https://bugs.launchpad.net/bugs/330281
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 330281] Re: Migrate to Smart Playlists; System.NullReferenceException

2009-02-19 Thread Daniel van Eeden
A Replay of the SQL statements:

$ sqlite3 .config/banshee-1/banshee.db 
SQLite version 3.5.9
Enter .help for instructions
sqlite BEGIN;
sqlite SELECT SmartPlaylistID, Name, Condition, OrderBy, LimitNumber, 
LimitCriterion FROM CoreSmartPlaylists;
1|Unheard| (NumberOfPlays = 0) |||
2|High Rating| (Rating  3) |||
3|Songs from the 90's| (Year BETWEEN 1990 AND 1999) AND (lower(Title) LIKE 
'%%') AND (lower(AlbumTitle) LIKE '%%') AND (lower(Genre) LIKE '%%') |||
4|Songs from the 80's| (Year BETWEEN 1980 AND 1989) |||
5|Favorites|requestquery banshee-version=1greaterThanEqualsfield 
name=rating /int4/int/greaterThanEquals/query/request|||
6|Unwatched|requestquery banshee-version=1equalsfield name=playcount 
/int0/int/equals/query/request|||
sqlite UPDATE CoreSmartPlaylists
   ... SET Name = 'Unheard',
   ... Condition = 'requestquery 
banshee-version=1equalsfield 
   ... name=playcount /int0/int/equals/query/request',
   ... OrderBy = NULL,
   ... LimitNumber = NULL,
   ... LimitCriterion = 'songs'
   ... WHERE SmartPlaylistID = 1;
sqlite UPDATE CoreSmartPlaylists
   ... SET Name = 'High Rating',
   ... Condition = 'requestquery 
banshee-version=1greaterThanfield name=rating 
/int3/int/greaterThan/query/request',
   ... OrderBy = NULL,
   ... LimitNumber = NULL,
   ... LimitCriterion = 'songs'
   ... WHERE SmartPlaylistID = 2;
sqlite SELECT * FROM CoreSmartPlaylists;
1|1|Unheard|requestquery banshee-version=1equalsfield 
name=playcount /int0/int/equals/query/request|||songs|6729|0
1|2|High Rating|requestquery banshee-version=1greaterThanfield 
name=rating /int3/int/greaterThan/query/request|||songs|6729|0
1|3|Songs from the 90's| (Year BETWEEN 1990 AND 1999) AND (lower(Title) LIKE 
'%%') AND (lower(AlbumTitle) LIKE '%%') AND (lower(Genre) LIKE '%%') 6729|0
1|4|Songs from the 80's| (Year BETWEEN 1980 AND 1989) 6729|0
3|5|Favorites|requestquery banshee-version=1greaterThanEqualsfield 
name=rating /int4/int/greaterThanEquals/query/request0|0
3|6|Unwatched|requestquery banshee-version=1equalsfield 
name=playcount /int0/int/equals/query/request1|0
sqlite ROLLBACK;
sqlite SELECT * FROM CoreSmartPlaylists;
1|1|Unheard| (NumberOfPlays = 0) 6729|0
1|2|High Rating| (Rating  3) 6729|0
1|3|Songs from the 90's| (Year BETWEEN 1990 AND 1999) AND (lower(Title) LIKE 
'%%') AND (lower(AlbumTitle) LIKE '%%') AND (lower(Genre) LIKE '%%') 6729|0
1|4|Songs from the 80's| (Year BETWEEN 1980 AND 1989) 6729|0
3|5|Favorites|requestquery banshee-version=1greaterThanEqualsfield 
name=rating /int4/int/greaterThanEquals/query/request0|0
3|6|Unwatched|requestquery banshee-version=1equalsfield 
name=playcount /int0/int/equals/query/request1|0

-- 
Migrate to Smart Playlists; System.NullReferenceException
https://bugs.launchpad.net/bugs/330281
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 330278] [NEW] Segfault on Nokia N73 disconnect

2009-02-16 Thread Daniel van Eeden
Public bug reported:

Binary package hint: banshee

Banshee version: 1.2.1-3ubuntu1
Ubuntu version: 8.10

To reproduce
1. Start banshee
2. Connect N73 Music Edition in Media Player mode
3. Press disconnect on the N73 or disconnect the cable.
4 *crash*

Console output:
dvee...@thinkpad:~$ banshee
[Info  22:15:51.597] Running Banshee 1.2.1
[Error 22:15:53.044] Unable to Migrate Smart Playlists - Please file a bug with 
this error: System.NullReferenceException: Object reference not set to an 
instance of an object
  at Banshee.SmartPlaylist.Migrator.ParseCondition (System.String value) 
[0x0] 
  at Banshee.SmartPlaylist.Migrator.Migrate (Int32 dbid, System.String Name, 
System.String Condition, System.String OrderBy, System.String LimitNumber, 
System.String LimitCriterion) [0x0] 
  at Banshee.SmartPlaylist.Migrator.MigrateAll () [0x0] 
[Info  22:15:53.328] All services are started 1.546576s
[Info  22:15:54.959] nereid Client Started
PTP: Opening session
Stacktrace:

  at (wrapper managed-to-native) 
System.Object.__icall_wrapper_mono_string_new_wrapper (intptr) 0x4
  at (wrapper managed-to-native) 
System.Object.__icall_wrapper_mono_string_new_wrapper (intptr) 0x
  at (wrapper unknown) Mtp.FolderStruct.PtrToStructure (intptr,object) 
0x
  at (wrapper runtime-invoke) 
Mtp.MtpDeviceStruct.runtime_invoke_void_intptr_object 
(object,intptr,intptr,intptr) 0x
  at (wrapper managed-to-native) 
System.Runtime.InteropServices.Marshal.PtrToStructure (intptr,System.Type) 
0x4
  at (wrapper managed-to-native) 
System.Runtime.InteropServices.Marshal.PtrToStructure (intptr,System.Type) 
0x
  at Mtp.Folder.GetRootFolders (Mtp.MtpDevice) 0x00072
  at Mtp.MtpDevice.GetRootFolders () 0xa
  at Mtp.MtpDevice.SetDefaultFolders () 0x0001e
  at Mtp.MtpDevice..ctor (Mtp.MtpDeviceHandle,Mtp.MtpDeviceStruct) 0x00039
  at Mtp.MtpDevice..ctor (intptr,bool,Mtp.MtpDeviceStruct) 0x0004b
  at Mtp.MtpDevice.Detect () 0x000c3
  at Banshee.Dap.Mtp.MtpSource.DeviceInitialize (Banshee.Hardware.IDevice) 
0x000c7
  at Banshee.Dap.DapService.FindDeviceSource (Banshee.Hardware.IDevice) 
0x000a5
  at c__CompilerGenerated1.MapDevicec__6 () 0x0040b
  at Banshee.Kernel.DelegateJob.RunJob () 0xc
  at Banshee.Kernel.Job.Run () 0xb
  at Banshee.Kernel.Scheduler.ProcessJobThread () 0x0014f
  at (wrapper runtime-invoke) System.Object.runtime_invoke_void 
(object,intptr,intptr,intptr) 0x

Native stacktrace:

banshee-1 [0x817b4ae]
banshee-1 [0x807f78b]
[0xb8045410]
banshee-1(mono_string_new_wrapper+0x23) [0x809cab3]
[0xb505aa6f]
[0xb2c15f43]
[0xb2c15703]
banshee-1 [0x80c65c8]
[0xb5006f42]
[0xb2c15b9b]
[0xb2c15b13]
[0xb2c1598f]
[0xb2c1586a]
[0xb2c157dc]
[0xb2c13224]
[0xb2c106d0]
[0xb2fbaa96]
[0xb2fb1cbc]
[0xb2faf325]
[0xb2faf304]
[0xb2faefb8]
[0xb79cf411]
banshee-1(mono_runtime_delegate_invoke+0x35) [0x8098c55]
banshee-1 [0x80d5fdf]
banshee-1 [0x81279de]
banshee-1 [0x813ff75]
/lib/tls/i686/cmov/libpthread.so.0 [0xb7f3250f]
/lib/tls/i686/cmov/libc.so.6(clone+0x5e) [0xb7e89a0e]

Debug info from gdb:

(no debugging symbols found)
[Thread debugging using libthread_db enabled]
[New Thread 0xb7d7c6d0 (LWP 23439)]
[New Thread 0xb2f64b90 (LWP 23480)]
[New Thread 0xb2c09b90 (LWP 23454)]
[New Thread 0xb2d24b90 (LWP 23453)]
[New Thread 0xb2e29b90 (LWP 23452)]
[New Thread 0xb3a34b90 (LWP 23447)]
[New Thread 0xb3b39b90 (LWP 23446)]
[New Thread 0xb3c3eb90 (LWP 23445)]
[New Thread 0xb631ab90 (LWP 23442)]
[New Thread 0xb7433b90 (LWP 23441)]
[New Thread 0xb8011b90 (LWP 23440)]
0xb8045430 in __kernel_vsyscall ()
  11 Thread 0xb8011b90 (LWP 23440)  0xb8045430 in __kernel_vsyscall ()
  10 Thread 0xb7433b90 (LWP 23441)  0xb8045430 in __kernel_vsyscall ()
  9 Thread 0xb631ab90 (LWP 23442)  0xb8045430 in __kernel_vsyscall ()
  8 Thread 0xb3c3eb90 (LWP 23445)  0xb8045430 in __kernel_vsyscall ()
  7 Thread 0xb3b39b90 (LWP 23446)  0xb8045430 in __kernel_vsyscall ()
  6 Thread 0xb3a34b90 (LWP 23447)  0xb8045430 in __kernel_vsyscall ()
  5 Thread 0xb2e29b90 (LWP 23452)  0xb8045430 in __kernel_vsyscall ()
  4 Thread 0xb2d24b90 (LWP 23453)  0xb8045430 in __kernel_vsyscall ()
  3 Thread 0xb2c09b90 (LWP 23454)  0xb8045430 in __kernel_vsyscall ()
  2 Thread 0xb2f64b90 (LWP 23480)  0xb8045430 in __kernel_vsyscall ()
  1 Thread 0xb7d7c6d0 (LWP 23439)  0xb8045430 in __kernel_vsyscall ()

Thread 11 (Thread 0xb8011b90 (LWP 23440)):
#0  0xb8045430 in __kernel_vsyscall ()
#1  0xb7f39906 in nanosleep () from /lib/tls/i686/cmov/libpthread.so.0
#2  0x08110fc8 in ?? ()
#3  0xb7f3250f in start_thread () from /lib/tls/i686/cmov/libpthread.so.0
#4  0xb7e89a0e in clone () from /lib/tls/i686/cmov/libc.so.6

Thread 10 (Thread 0xb7433b90 (LWP 23441)):
#0  0xb8045430 in __kernel_vsyscall ()
#1  0xb7f36075 in 

[Bug 330281] [NEW] Migrate to Smart Playlists; System.NullReferenceException

2009-02-16 Thread Daniel van Eeden
Public bug reported:

Binary package hint: banshee

Ubuntu 8.10, Banshee 1.2.1-3ubuntu1

To reproduce:
1. Start banshee from a terminal window
2. Close banshee

$ banshee
[Info  22:30:30.775] Running Banshee 1.2.1
[Error 22:30:32.385] Unable to Migrate Smart Playlists - Please file a bug with 
this error: System.NullReferenceException: Object reference not set to an 
instance of an object
  at Banshee.SmartPlaylist.Migrator.ParseCondition (System.String value) 
[0x0] 
  at Banshee.SmartPlaylist.Migrator.Migrate (Int32 dbid, System.String Name, 
System.String Condition, System.String OrderBy, System.String LimitNumber, 
System.String LimitCriterion) [0x0] 
  at Banshee.SmartPlaylist.Migrator.MigrateAll () [0x0] 
[Info  22:30:32.675] All services are started 1.706839s
[Info  22:30:34.283] nereid Client Started
[Warn  22:30:43.482] Caught an exception - Invalid arguments (in `System')
  at System.Net.Sockets.Socket.Accept () [0x0] 
  at Banshee.Daap.DaapProxyWebServer.ServerLoop () [0x0]

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

-- 
Migrate to Smart Playlists; System.NullReferenceException
https://bugs.launchpad.net/bugs/330281
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 292065] [NEW] close button in about screen doesn't work

2008-11-01 Thread Daniel van Eeden
Public bug reported:

1. Start muine with the audioscrobbler plugin installed
2. File-Audioscrobbler...
3. About
4. Close
5 Nothing happens...

Work around:
Close the window using your windowmanager's controls (e.g. the X in the 
topright corner in case of metacity/clearlooks)

This is NOT about the close button in the about dialog from muine
itself. It is the about dialog of the plugin which poses the problem.

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

-- 
close button in about screen doesn't work
https://bugs.launchpad.net/bugs/292065
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 292065] Re: close button in about screen doesn't work

2008-11-01 Thread Daniel van Eeden
Version info:

$ dpkg -l muine muine-plugin-audioscrobbler
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name   VersionDescription
+++-==-==-
ii  muine  0.8.9-0ubuntu1 Simple playlist based music player
ii  muine-plugin-a 0.1.8-0ubuntu2 Audioscrobbler plugin for Muine music player
[EMAIL PROTECTED]:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 8.10
Release:8.10
Codename:   intrepid

-- 
close button in about screen doesn't work
https://bugs.launchpad.net/bugs/292065
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 259701] [NEW] mergeant crash when defining relations

2008-08-20 Thread Daniel van Eeden
Public bug reported:

1. Start mergeant
2. Connect to a MySQL 5 database
3. Click on relations
4. Create new graph (the + icon)
5. Select the newly created graph
6. add two tables (right mouse click)
7. drag-n-drop to define a relation
8. CRASH

Core was generated by `mergeant'.
Program terminated with signal 11, Segmentation fault.
[New process 2476]
#0  0xb7d32230 in gnome_canvas_item_ungrab () from 
/usr/lib/libgnomecanvas-2.so.0
(gdb) bt
#0  0xb7d32230 in gnome_canvas_item_ungrab () from 
/usr/lib/libgnomecanvas-2.so.0
#1  0xb7ec3600 in gnome_db_canvas_cursor_finalize (object=0x83fd508) at 
gnome-db-canvas-cursor.c:127
#2  0xb76958db in IA__g_object_unref (_object=0x83fd508) at 
/build/buildd/glib2.0-2.16.4/gobject/gobject.c:1793
#3  0xb7d2ecd4 in ?? () from /usr/lib/libgnomecanvas-2.so.0
#4  0xb7d30577 in ?? () from /usr/lib/libgnomecanvas-2.so.0
#5  0xb7ab58d4 in _gtk_marshal_BOOLEAN__BOXED (closure=0x80c9758, 
return_value=0xbfeca330, n_param_values=2, param_values=0xbfeca414, 
invocation_hint=0xbfeca31c, marshal_data=0x0) at 
/build/buildd/gtk+2.0-2.12.9/gtk/gtkmarshalers.c:84
#6  0xb7692079 in g_type_class_meta_marshal (closure=0x80c9758, 
return_value=0xbfeca330, n_param_values=2, param_values=0xbfeca414, 
invocation_hint=0xbfeca31c, marshal_data=0xb4) at 
/build/buildd/glib2.0-2.16.4/gobject/gclosure.c:567
#7  0xb7693759 in IA__g_closure_invoke (closure=0x80c9758, 
return_value=0xbfeca330, n_param_values=2, param_values=0xbfeca414, 
invocation_hint=0xbfeca31c) at 
/build/buildd/glib2.0-2.16.4/gobject/gclosure.c:490
#8  0xb76a811a in signal_emit_unlocked_R (node=0x80ca890, detail=0, 
instance=0x82fa010, emission_return=0xbfeca5d4, 
instance_and_params=0xbfeca414) at 
/build/buildd/glib2.0-2.16.4/gobject/gsignal.c:2478
#9  0xb76a9947 in IA__g_signal_emit_valist (instance=0x82fa010, signal_id=57, 
detail=0, 
var_args=0xbfeca650 h���H�?\b\020�/\b?\224��\020�/\b\220H\v\b) at 
/build/buildd/glib2.0-2.16.4/gobject/gsignal.c:2209
#10 0xb76a9f69 in IA__g_signal_emit (instance=0x82fa010, signal_id=57, 
detail=0) at /build/buildd/glib2.0-2.16.4/gobject/gsignal.c:2243
#11 0xb7bd4667 in gtk_widget_event_internal (widget=0x82fa010, event=0x83fd648) 
at /build/buildd/gtk+2.0-2.12.9/gtk/gtkwidget.c:4678
#12 0xb7aaeb21 in IA__gtk_propagate_event (widget=0x82fa010, event=0x83fd648) 
at /build/buildd/gtk+2.0-2.12.9/gtk/gtkmain.c:2336
#13 0xb7aafd88 in IA__gtk_main_do_event (event=0x83fd648) at 
/build/buildd/gtk+2.0-2.12.9/gtk/gtkmain.c:1556
#14 0xb7808a9a in gdk_event_dispatch (source=0x809bc00, callback=0, 
user_data=0x0)
at /build/buildd/gtk+2.0-2.12.9/gdk/x11/gdkevents-x11.c:2351
#15 0xb7607dd6 in IA__g_main_context_dispatch (context=0x809bec8) at 
/build/buildd/glib2.0-2.16.4/glib/gmain.c:2012
#16 0xb760b193 in g_main_context_iterate (context=0x809bec8, block=1, 
dispatch=1, self=0x8083fd8)
at /build/buildd/glib2.0-2.16.4/glib/gmain.c:2645
#17 0xb760b577 in IA__g_main_loop_run (loop=0x80ab0e8) at 
/build/buildd/glib2.0-2.16.4/glib/gmain.c:2853
#18 0xb7ab0264 in IA__gtk_main () at 
/build/buildd/gtk+2.0-2.12.9/gtk/gtkmain.c:1163
#19 0xb7e844d9 in gnome_db_main_run (init_func=0x8064670, user_data=0x0) at 
gnome-db-init.c:126
#20 0x08052908 in ?? ()
#21 0xb747e450 in __libc_start_main () from /lib/tls/i686/cmov/libc.so.6
#22 0x08052761 in ?? ()
(gdb) q

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

-- 
mergeant crash when defining relations
https://bugs.launchpad.net/bugs/259701
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 259701] Re: mergeant crash when defining relations

2008-08-20 Thread Daniel van Eeden
Versions:
$ dpkg -l | egrep (mergeant|libgda3|libgnomedb) | cut -c1-100
ii  libgda3-3  3.0.2-2ubuntu1   

ii  libgda3-3-dbg  3.0.2-2ubuntu1   

ii  libgda3-common 3.0.2-2ubuntu1   

ii  libgda3-mysql  3.0.2-2ubuntu1   

ii  libgda3-sqlite 3.0.2-2ubuntu1   

ii  libgnomedb3-4  3.0.0-2build1

ii  libgnomedb3-4-dbg  3.0.0-2build1

ii  libgnomedb3-bin3.0.0-2build1

ii  libgnomedb3-common 3.0.0-2build1

ii  mergeant   0.67-3

-- 
mergeant crash when defining relations
https://bugs.launchpad.net/bugs/259701
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 241538] [NEW] cpulimit segmentation fault

2008-06-19 Thread Daniel van Eeden
Public bug reported:

Binary package hint: cpulimit

$ dpkg -l cpulimit
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Installed/Config-f/Unpacked/Failed-cfg/Half-inst/t-aWait/T-pend
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name  Version   
Description
+++-=-=-==
ii  cpulimit  1.1-10limits 
the cpu usage of a process
$ cpulimit --exe /bin/ls --limit 10
Segmentation fault
$ apt-get source cpulimit
Reading package lists... Done
Building dependency tree   
Reading state information... Done
NOTICE: 'cpulimit' packaging is maintained in the 'Svn' version control system 
at:
http://svn.toastfreeware.priv.at/debian/cpulimit/trunk/
Need to get 10.5kB of source archives.
Get:1 http://nl.archive.ubuntu.com hardy/universe cpulimit 1.1-10 (dsc) [778B]
Get:2 http://nl.archive.ubuntu.com hardy/universe cpulimit 1.1-10 (tar) [5106B]
Get:3 http://nl.archive.ubuntu.com hardy/universe cpulimit 1.1-10 (diff) [4657B]
Fetched 10.5kB in 0s (158kB/s)
gpg: Signature made Sun 04 Mar 2007 06:57:05 PM CET using DSA key ID F972BE03
gpg: Can't check signature: public key not found
dpkg-source: extracting cpulimit in cpulimit-1.1
dpkg-source: unpacking cpulimit_1.1.orig.tar.gz
dpkg-source: applying ./cpulimit_1.1-10.diff.gz
$ cd cpulimit-1.1/
$ make cpulimit
gcc -o cpulimit cpulimit.c -lrt -Wall -O2
$ gdb --args ./cpulimit --exe /bin/ls --limit 10
GNU gdb 6.8-debian
Copyright (C) 2008 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show copying
and show warranty for details.
This GDB was configured as i486-linux-gnu...
(gdb) r
Starting program: /tmp/cpulimit-1.1/cpulimit --exe /bin/ls --limit 10
[Thread debugging using libthread_db enabled]
[New Thread 0xb7e316b0 (LWP 3220)]

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0xb7e316b0 (LWP 3220)]
0xb7e7a87b in ?? () from /lib/tls/i686/cmov/libc.so.6
(gdb) bt full
#0  0xb7e7a87b in ?? () from /lib/tls/i686/cmov/libc.so.6
No symbol table info available.
#1  0xb7e7a5e0 in strtol () from /lib/tls/i686/cmov/libc.so.6
No symbol table info available.
#2  0x08049680 in main ()
No locals.
(gdb) q
The program is running.  Exit anyway? (y or n) y
$ sudo apt-get install libc6-d
libc6-dbglibc6-devlibc6-dev-amd64  
$ sudo apt-get install libc6-dbg 
Reading package lists... Done
Building dependency tree   
Reading state information... Done
The following NEW packages will be installed:
  libc6-dbg
0 upgraded, 1 newly installed, 0 to remove and 1 not upgraded.
Need to get 5095kB of archives.
After this operation, 18.1MB of additional disk space will be used.
Get:1 http://nl.archive.ubuntu.com hardy/main libc6-dbg 2.7-10ubuntu3 [5095kB]
Fetched 5095kB in 0s (9719kB/s)
Selecting previously deselected package libc6-dbg.
(Reading database ... 214541 files and directories currently installed.)
Unpacking libc6-dbg (from .../libc6-dbg_2.7-10ubuntu3_i386.deb) ...
Setting up libc6-dbg (2.7-10ubuntu3) ...
$ gdb --args ./cpulimit --exe /bin/ls --limit 10
GNU gdb 6.8-debian
Copyright (C) 2008 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show copying
and show warranty for details.
This GDB was configured as i486-linux-gnu...
(gdb) r
Starting program: /tmp/cpulimit-1.1/cpulimit --exe /bin/ls --limit 10
[Thread debugging using libthread_db enabled]
[New Thread 0xb7e476b0 (LWP 3266)]

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0xb7e476b0 (LWP 3266)]
0xb7e9087b in strtol_l_internal () from /lib/tls/i686/cmov/libc.so.6
(gdb) bt full
#0  0xb7e9087b in strtol_l_internal () from /lib/tls/i686/cmov/libc.so.6
No symbol table info available.
#1  0xb7e905e0 in strtol () from /lib/tls/i686/cmov/libc.so.6
No symbol table info available.
#2  0x08049680 in main ()
No locals.
(gdb)

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

** Affects: cpulimit (Debian)
 Importance: Undecided
 Status: New

** Also affects: cpulimit (Debian)
   Importance: Undecided
   Status: New

-- 
cpulimit segmentation fault
https://bugs.launchpad.net/bugs/241538
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 234780] Re: vim-runtime should depend on vim

2008-05-25 Thread Daniel van Eeden
tested on 8.04 and 7.10

-- 
vim-runtime should depend on vim
https://bugs.launchpad.net/bugs/234780
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 234780] [NEW] vim-runtime should depend on vim

2008-05-25 Thread Daniel van Eeden
Public bug reported:

vim-runtime adds syntax highlighting and a lot of other stuff to vim

vim-tiny is installed by default and is unable to load syntax.vim from
vim-runtime. (so /path/to/syntax.vim)

syntax highlighting is done in my .vimrc It fails gracefully if vim-
runtime is not installed like it should but it fails with a grose error
if vim-runtime is installed and vim is not.

vim-runtime should depend on vim. vim-runtime is just wasting diskspace
if vim is not installed.

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

-- 
vim-runtime should depend on vim
https://bugs.launchpad.net/bugs/234780
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 175293] Re: minimize doesn't work in fullscreen

2008-02-13 Thread Daniel van Eeden
** Changed in: firefox (Ubuntu)
   Status: New = Fix Released

-- 
minimize doesn't work in fullscreen
https://bugs.launchpad.net/bugs/175293
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 181948] Re: exiqgrep: error on messages w/o size

2008-01-31 Thread Daniel van Eeden
This is patch002 in debdiff format.

** Attachment added: Signed debdiff as requested
   http://launchpadlibrarian.net/11669544/exim4_bug181948.debdiff.asc

-- 
exiqgrep: error on messages w/o size
https://bugs.launchpad.net/bugs/181948
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 181948] Re: exiqgrep: error on messages w/o size

2008-01-11 Thread Daniel van Eeden

** Attachment added: Safe, quick patch
   http://launchpadlibrarian.net/11280078/exiqgrep-msg-wo-size-patch001.patch

-- 
exiqgrep: error on messages w/o size
https://bugs.launchpad.net/bugs/181948
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 181948] Re: exiqgrep: error on messages w/o size

2008-01-11 Thread Daniel van Eeden

** Attachment added: Better patch
   http://launchpadlibrarian.net/11280081/exiqgrep-msg-wo-size-patch002.patch

-- 
exiqgrep: error on messages w/o size
https://bugs.launchpad.net/bugs/181948
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 181948] Re: exiqgrep: error on messages w/o size

2008-01-11 Thread Daniel van Eeden

** Attachment added: Same as first patch, but makes it a non-fatal error
   http://launchpadlibrarian.net/11280105/exiqgrep-msg-wo-size-patch003.patch

-- 
exiqgrep: error on messages w/o size
https://bugs.launchpad.net/bugs/181948
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 181948] Re: exiqgrep: error on messages w/o size

2008-01-11 Thread Daniel van Eeden
The best patch is patch002.

-- 
exiqgrep: error on messages w/o size
https://bugs.launchpad.net/bugs/181948
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 181948] Re: exiqgrep: error on messages w/o size

2008-01-11 Thread Daniel van Eeden
Version: 4.60-3ubuntu3.1 (Ubuntu 6.06.1 LTS)

-- 
exiqgrep: error on messages w/o size
https://bugs.launchpad.net/bugs/181948
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 181948] exiqgrep: error on messages w/o size

2008-01-11 Thread Daniel van Eeden
Public bug reported:

# exiqgrep -x
Line mismatch: 42h   1JCb3k-0007bY-P1 [EMAIL PROTECTED]

This happens when exim4 -bp (mailq) reports lines w/o size info

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

-- 
exiqgrep: error on messages w/o size
https://bugs.launchpad.net/bugs/181948
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 181948] Re: exiqgrep: error on messages w/o size

2008-01-11 Thread Daniel van Eeden

** Attachment added: A script to remove broken messages from the queue
   http://launchpadlibrarian.net/11280711/exim-queue-fix.sh

-- 
exiqgrep: error on messages w/o size
https://bugs.launchpad.net/bugs/181948
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 175293] minimize doesn't work in fullscreen

2007-12-10 Thread Daniel van Eeden
Public bug reported:

Binary package hint: firefox

1. Start firefox
2. hit F11 or select View = Fullscreen
3. click minimize.

actual effect: nothing
expected effect: minimizing firefox

This bug is not present in earlier versions (tested on 6.10)

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

-- 
minimize doesn't work in fullscreen
https://bugs.launchpad.net/bugs/175293
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 161127] Re: Fix for MySQL Bug #22413 should be backported to LTS releases

2007-11-12 Thread Daniel van Eeden
It can be used as a DoS attack, so I consider it a security
vulnerability. It does not need many privileges so it is likely to occur
under realistic circumstances.

** This bug has been flagged as a security issue

-- 
Fix for MySQL Bug #22413 should be backported to LTS releases
https://bugs.launchpad.net/bugs/161127
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 161127] Re: Fix for MySQL Bug #22413 should be backported to LTS releases

2007-11-09 Thread Daniel van Eeden
0x8189e49 handle_segfault + 639
0xe420 _end + -140734800
0x8f65a18 _end + 9634984
0x825e889 _Z14get_all_tablesP3THDP13st_table_listP4Item + 1765
0x82590a6 _Z24get_schema_tables_resultP4JOIN23enum_schema_table_state + 308
0x81e4610 _ZN4JOIN4execEv + 2528
0x81e5ef5 
_Z12mysql_selectP3THDPPP4ItemP13st_table_listjR4ListIS1_ES2_jP8st_orderSB_S2_SB_mP13select_resultP18st_select_lex_unitP13st_sel
 + 313
0x827a9f5 _Z21mysql_derived_fillingP3THDP6st_lexP13st_table_list + 249
0x827a89e _Z20mysql_handle_derivedP6st_lexPFbP3THDS0_P13st_table_listE + 78
0x81c26a1 _Z20open_and_lock_tablesP3THDP13st_table_list + 201
0x819cc7c _Z21mysql_execute_commandP3THD + 5872
0x81a2859 _Z11mysql_parseP3THDPcj + 337
0x81a2e23 _Z16dispatch_command19enum_server_commandP3THDPcj + 1259
0x81a3f5c _Z10do_commandP3THD + 134
0x81a4908 handle_one_connection + 2238
0xb7f7a341 _end + -1349235247
0xb7dcb4ee _end + -1351000194

-- 
Fix for MySQL Bug #22413 should be backported to LTS releases
https://bugs.launchpad.net/bugs/161127
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 161127] Re: Fix for MySQL Bug #22413 should be backported to LTS releases

2007-11-09 Thread Daniel van Eeden
mysql show create view v_info_top50_tablecount\G
*** 1. row ***
   View: v_info_top50_tablecount
Create View: CREATE ALGORITHM=UNDEFINED [EMAIL PROTECTED] SQL SECURITY DEFINER 
VIEW `deeden`.`v_info_top50_tablecount` AS select sql_no_cache 
`v_info_tablecount`.`schema_name` AS 
`schema_name`,`v_info_tablecount`.`table_count` AS `table_count` from 
`deeden`.`v_info_tablecount` order by `v_info_tablecount`.`table_count` desc 
limit 50
1 row in set (0.00 sec)

mysql show create view v_info_tablecount\G
*** 1. row ***
   View: v_info_tablecount
Create View: CREATE ALGORITHM=UNDEFINED [EMAIL PROTECTED] SQL SECURITY DEFINER 
VIEW `deeden`.`v_info_tablecount` AS select sql_no_cache `s`.`SCHEMA_NAME` AS 
`schema_name`,count(`t`.`TABLE_NAME`) AS `table_count` from 
(`information_schema`.`schemata` `s` left join `information_schema`.`tables` 
`t` on((`s`.`SCHEMA_NAME` = `t`.`TABLE_SCHEMA`))) group by `s`.`SCHEMA_NAME`
1 row in set (0.00 sec)

mysql select count(*) from information_schema.tables;
+--+
| count(*) |
+--+
| 8519 | 
+--+
1 row in set (3.36 sec)

mysql select count(*) from information_schema.schemata;
+--+
| count(*) |
+--+
|  247 | 
+--+
1 row in set (0.01 sec)

mysql explain select * from v_info_top50_tablecount;
ERROR 2013 (HY000): Lost connection to MySQL server during query

-- 
Fix for MySQL Bug #22413 should be backported to LTS releases
https://bugs.launchpad.net/bugs/161127
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 161127] Fix for MySQL Bug #22413 should be backported to LTS releases

2007-11-08 Thread Daniel van Eeden
Public bug reported:

MySQL bug #22413[1] is fixed in mysql-dfsg-5.0 (5.0.32-1) and should be
backported to the version in Ubuntu 6.06 LTS.

[1] http://bugs.mysql.com/bug.php?id=22413

** Affects: mysql-dfsg-5.0 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: crash dapper lts

-- 
Fix for MySQL Bug #22413 should be backported to LTS releases
https://bugs.launchpad.net/bugs/161127
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 134611] genpower should use /usr/share/doc instead of /usr/doc

2007-08-24 Thread Daniel van Eeden
Public bug reported:

Binary package hint: genpower

[EMAIL PROTECTED]:~$ sudo apt-get install genpower
Reading package lists... Done
Building dependency tree   
Reading state information... Done
The following NEW packages will be installed:
  genpower
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 47.3kB of archives.
After unpacking 164kB of additional disk space will be used.
Get:1 http://nl.archive.ubuntu.com feisty/universe genpower 1.0.5-2ubuntu1 
[47.3kB]
Fetched 47.3kB in 0s (220kB/s)   
Selecting previously deselected package genpower.
(Reading database ... 150217 files and directories currently installed.)
Unpacking genpower (from .../genpower_1.0.5-2ubuntu1_i386.deb) ...
Setting up genpower (1.0.5-2ubuntu1) ...
- Edit /etc/genpowerd.conf to set cable type, port, and to enable UPS monitor.
- Edit /etc/init.d/powerfail to set shutdown delays for this system.
- Note that genpower will not work with the smart-signalling mode supported by
  most UPS systems.  You will likely have to build a special cable to make use
  of the UPS's dumb-signalling mode (if it has one).  Information on this can
  can be found in the /usr/doc/genpower/cables directory.  If you have an APC,
  unit you should be able to use the 'apc-pnp' cable type with the Windows-95
  PNP (plug-n-play) cable that came with your UPS.  This cable should come
  with all APC Backups Pro, Smart-Ups, and Matrix-Ups systems.
 
/etc/init.d/genpower: UPS monitor daemon not enabled

[EMAIL PROTECTED]:~$ dpkg -l genpower
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name   VersionDescription
+++-==-==-
ii  genpower   1.0.5-2ubuntu1 Monitor UPS and handle line power failures

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

-- 
genpower should use /usr/share/doc instead of /usr/doc
https://bugs.launchpad.net/bugs/134611
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 95925] debsecan should be adjusted for ubuntu

2007-03-25 Thread Daniel van Eeden
Public bug reported:

Binary package hint: debsecan

$ debsecan --suite=edgy
usage: debsecan OPTIONS...

debsecan: error: option --suite: invalid choice: 'edgy' (choose from
'woody', 'sarge', 'etch', 'sid')


It should have options for edgy, etc.

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

-- 
debsecan should be adjusted for ubuntu
https://launchpad.net/bugs/95925

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


[Bug 83202] key cache icon in notification area is almost identical to lock screen icon

2007-02-04 Thread Daniel van Eeden
Public bug reported:

Binary package hint: seahorse

The lock-screen buttons:
http://www.gnome.org/learn/users-guide/2.2/figures/lockscreen_icon.png
http://www.gnome.org/learn/users-guide/latest/figures/lockscreen_icon.png

The seahorse key cache icon is the same as the latest lockscreen_icon
but w/o the key.

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

-- 
key cache icon in notification area is almost identical to lock screen icon
https://launchpad.net/bugs/83202

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


[Bug 83202] Re: key cache icon in notification area is almost identical to lock screen icon

2007-02-04 Thread Daniel van Eeden
** Tags added: usability

-- 
key cache icon in notification area is almost identical to lock screen icon
https://launchpad.net/bugs/83202

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


[Bug 83208] seahorse-preferences help button doesn't work

2007-02-04 Thread Daniel van Eeden
Public bug reported:

Binary package hint: seahorse

The help button in seahorse-preferences refers to /usr/share/gnome/help
/seahorse-preferences which doesn't exist.

Easy fix:
Create a symlink to /usr/share/gnome/help/seahorse.

** Affects: seahorse (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed
** Affects: seahorse (Debian)
 Importance: Undecided
 Status: Unconfirmed

** Also affects: seahorse (Debian)
   Importance: Undecided
   Status: Unconfirmed

-- 
seahorse-preferences help button doesn't work
https://launchpad.net/bugs/83208

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


[Bug 83208] Re: seahorse-preferences help button doesn't work

2007-02-04 Thread Daniel van Eeden
** Changed in: seahorse (Debian)
   Importance: Undecided = Unknown
 Bugwatch: None = Debian Bug tracker #409692
   Status: Unconfirmed = Unknown

-- 
seahorse-preferences help button doesn't work
https://launchpad.net/bugs/83208

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


[Bug 82310] initscanner.sh: sane-find-scanners should be sane-find-scanner

2007-01-30 Thread Daniel van Eeden
Public bug reported:

Binary package hint: scanbuttond

Summary says it all

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

-- 
initscanner.sh: sane-find-scanners should be sane-find-scanner
https://launchpad.net/bugs/82310

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


[Bug 82309] ScanJet 4300C not recognized

2007-01-30 Thread Daniel van Eeden
Public bug reported:

Binary package hint: scanbuttond

## PATCH
--- scanbuttond-0.2.3.orig/backends/niash.c
+++ scanbuttond-0.2.3/backends/niash.c
@@ -29,14 +29,15 @@
 
 static char* backend_name = Niash USB;
 
-#define NUM_SUPPORTED_USB_DEVICES 4
+#define NUM_SUPPORTED_USB_DEVICES 5
 
 static int supported_usb_devices[NUM_SUPPORTED_USB_DEVICES][3] = {
// vendor, product, num_buttons
{ 0x06bd, 0x0100, 4 },  // Agfa Snapscan Touch
{ 0x03f0, 0x0205, 2 },  // HP Scanjet 3300c
{ 0x03f0, 0x0405, 3 },  // HP Scanjet 3400c
-   { 0x03f0, 0x0305, 3 }   // HP Scanjet 4300c
+   { 0x03f0, 0x0305, 3 },  // HP Scanjet 4300c
+   { 0x047b, 0x1002, 3 },  // HP Scanjet 4300c
 };
 
 // TODO: check if this backend really works on the Epson 2580 too...
@@ -44,6 +45,7 @@
{ Agfa, Snapscan Touch },
{ Hewlett-Packard, Scanjet 3300c },
{ Hewlett-Packard, Scanjet 3400c },
+   { Hewlett-Packard, Scanjet 4300c },
{ Hewlett-Packard, Scanjet 4300c }
 };

## PATCH

## DEBUG INFO
# lsusb -v -d 047b:1002

Bus 002 Device 004: ID 047b:1002 Silitek Corp. HP ScanJet 4300c Parallel Port
Device Descriptor:
  bLength18
  bDescriptorType 1
  bcdUSB   1.00
  bDeviceClass0 (Defined at Interface level)
  bDeviceSubClass 0 
  bDeviceProtocol 0 
  bMaxPacketSize0 8
  idVendor   0x047b Silitek Corp.
  idProduct  0x1002 HP ScanJet 4300c Parallel Port
  bcdDevice0.00
  iManufacturer   0 
  iProduct0 
  iSerial 0 
  bNumConfigurations  1
  Configuration Descriptor:
bLength 9
bDescriptorType 2
wTotalLength   39
bNumInterfaces  1
bConfigurationValue 1
iConfiguration  0 
bmAttributes 0x40
  (Missing must-be-set bit!)
  Self Powered
MaxPower   48mA
Interface Descriptor:
  bLength 9
  bDescriptorType 4
  bInterfaceNumber0
  bAlternateSetting   0
  bNumEndpoints   3
  bInterfaceClass16 
  bInterfaceSubClass  1 
  bInterfaceProtocol  0 
  iInterface  0 
  Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x81  EP 1 IN
bmAttributes2
  Transfer TypeBulk
  Synch Type   None
  Usage Type   Data
wMaxPacketSize 0x0040  1x 64 bytes
bInterval   0
  Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x02  EP 2 OUT
bmAttributes2
  Transfer TypeBulk
  Synch Type   None
  Usage Type   Data
wMaxPacketSize 0x0040  1x 64 bytes
bInterval   0
  Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x83  EP 3 IN
bmAttributes3
  Transfer TypeInterrupt
  Synch Type   None
  Usage Type   Data
wMaxPacketSize 0x0001  1x 1 bytes
bInterval   8
Device Status: 0x0001
  Self Powered
## DEBUG INFO

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

** Tags added: patch

-- 
ScanJet 4300C not recognized
https://launchpad.net/bugs/82309

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


[Bug 82309] Re: ScanJet 4300C not recognized

2007-01-30 Thread Daniel van Eeden
The manpage sane-niash(5) lists 2 versions of the ScanJet 4300c, The HP
version and the Silitek version.

This patch should get the Silitek version to work. Both versions are HP
branded.

** Also affects: scanbuttond (Debian)
   Importance: Undecided
   Status: Unconfirmed

-- 
ScanJet 4300C not recognized
https://launchpad.net/bugs/82309

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


[Bug 82309] Re: ScanJet 4300C not recognized

2007-01-30 Thread Daniel van Eeden
** Changed in: scanbuttond (Debian)
   Importance: Undecided = Unknown
 Bugwatch: None = Debian Bug tracker #409071
   Status: Unconfirmed = Unknown

-- 
ScanJet 4300C not recognized
https://launchpad.net/bugs/82309

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


[Bug 38258] Re: LiveCD(Flight 6) Hangs because of broken harddrive(s)

2006-10-15 Thread Daniel van Eeden
I encounterd the same problem with an machine w/ a broken disk.

The machine seems to hang when EVMS starts loading. But it did continue,
but very very slowly. There where numerous I/O errors printed on the
screen.

Some posible solutions:
* Let EVMS detecting stop after the first I/O error
* a no-evms or do-not-probe-disks option at the bootloader
* detect broken disks using smartmontools and blacklist them

This was using the 6.06.1 LiveCD for x86 on a HP Compaq notebook. The
disk contained 1 NTFS partition.

-- 
LiveCD(Flight 6) Hangs because of broken harddrive(s)
https://launchpad.net/bugs/38258

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