[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-10-09 Thread Darlyn Smith
** Changed in: aptitude (Ubuntu) Assignee: (unassigned) = Darlyn Smith (darlyn13) -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 *** https://bugs.launchpad.net/bugs/515525 You received this bug notification because you are a

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-04-09 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/aptitude -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 *** https://bugs.launchpad.net/bugs/515525 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-04-09 Thread Launchpad Bug Tracker
This bug was fixed in the package aptitude - 0.4.11.11-1ubuntu10 --- aptitude (0.4.11.11-1ubuntu10) lucid; urgency=low * 13_screensize.dpatch: - Fix to avoid overflowing the BlankLine buffer. (LP: #515525) -- Anders Kaseorg ande...@mit.edu Thu, 08 Apr 2010 00:28:08 -0400

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-04-09 Thread HughDaniel
I just discovered that this bug is _always_ being triggered if I use GNOME Terminal 2.29.6 (2.29.6-0ubuntu5, why it's not 2.30 I have no idea) to run aptitude, yet on the same box if I run aptitude from xterm it works _unless_ I resize the xterm while aptitude is running, then I get this

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-04-07 Thread Ronald Evers
Similar issues here: aptitude crashes sometimes. It just crashed on me as I tried to 'sudo aptitude update'. But in my case, when I rerun 'sudo aptitude update' it updates fine. I have not been able to reproduce any aptitude crash, every time I rerun the command, it works fine. Hope this is the

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-04-07 Thread HughDaniel
Right now I have this bug repeatable, so I am not making changes to my system in case someone wants deeper debugging info, but I did trap it in GDB and here are the results: # gdb aptitude update GNU gdb (GDB) 7.1-ubuntu Copyright (C) 2010 Free Software Foundation, Inc. License GPLv3+: GNU GPL

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-04-07 Thread Anders Kaseorg
This was introduced by the patch from bug 391035 (13_screensize.dpatch). That patch is wrong, not only because ScreenWidth should have been ScreenWidth + 1, but also because ScreenWidth is a reference to an integer that may be updated at any time by the SIGWINCH signal handler. -- aptitude

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-04-07 Thread Anders Kaseorg
This debdiff replaces 13_screensize.dpatch with a correct patch. ** Attachment added: aptitude_0.4.11.11-1ubuntu10.debdiff http://launchpadlibrarian.net/43407717/aptitude_0.4.11.11-1ubuntu10.debdiff -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-04-06 Thread Ulrik Mikaelsson
Great! I were about to ask you for a stacktrace or coredump, to verify it's not an unrelated bug. :) -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 *** https://bugs.launchpad.net/bugs/515525 You received this bug notification because

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-04-05 Thread yangxq
Sorry, I found my patched version was overwritten by original version after upgrade. Ignore my last post. -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 *** https://bugs.launchpad.net/bugs/515525 You received this bug notification

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-04-02 Thread yangxq
core dump again. -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 *** https://bugs.launchpad.net/bugs/515525 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-04-01 Thread Brian Murray
** Tags added: patch -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 *** https://bugs.launchpad.net/bugs/515525 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-03-31 Thread yangxq
I applied the patch. No core dump till now. -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 *** https://bugs.launchpad.net/bugs/515525 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-03-31 Thread Ulrik Mikaelsson
Spent some time with this, and found the cause. The error is a bit mis- leading, it's not a double-free-problem. Rather, it's a problem with the implementation failing to allocate space for null-termination when allocating buffer for an empty screen-line, therefore the connection to terminal size.

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-03-31 Thread Ulrik Mikaelsson
** Patch added: aptitude-fix-memory-corruption.patch http://launchpadlibrarian.net/42660829/aptitude-fix-memory-corruption.patch -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 *** https://bugs.launchpad.net/bugs/515525 You received

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-03-30 Thread Matthias
still exists in Beta 2, but only when I run it using the Tilda terminal emulator. In the Terminal app, it doesn't crash. -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 *** https://bugs.launchpad.net/bugs/515525 You received this bug

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-03-30 Thread Matthias
sorry, in Beta 1 -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 *** https://bugs.launchpad.net/bugs/515525 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-03-26 Thread KB1JWQ
Can confirm it exists here. Changing terminal size resolved it. -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 *** https://bugs.launchpad.net/bugs/515525 You received this bug notification because you are a member of Ubuntu Bugs,

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-03-26 Thread Andreas Ntaflos
Can also confirm the problem still exists and that changing terminal size fixed it. I only used the commandline interface of aptitude, i.e. the non-ncurses one. I am somewhat baffled, how can the terminal size crash a program? Never heard of that before :) -- aptitude assert failure: *** glibc

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-03-23 Thread Steve Langasek
** Changed in: aptitude (Ubuntu Lucid) Milestone: ubuntu-10.04-beta-1 = ubuntu-10.04-beta-2 -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 *** https://bugs.launchpad.net/bugs/515525 You received this bug notification because you

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-03-22 Thread Alexander Fortin
I got this same error installing pwgen running aptitude install from console. Lucid Beta1 fully updated on a Dell Mini9 -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 *** https://bugs.launchpad.net/bugs/515525 You received this bug

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-03-22 Thread Oliver Herrmann
Thanks for the good Bugtrace here... saved me a lot of time searching what i did wrong ;) One big hooo to the Ubuntu Community!!! -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 *** https://bugs.launchpad.net/bugs/515525

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-03-22 Thread Dennis Schridde
Issue still present in 10.04_beta2 -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 *** https://bugs.launchpad.net/bugs/515525 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. --

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-03-20 Thread jerrylamos
Lucid Beta 1 linux 2.6.32-16 aptitude fails each and every time, crash report, dump, you name it. Thinkpad R31 with i830 intel graphics. One of the key execs which is failing has nvidia in it. ?? Had alpha 3 installed, updated, got aptitude failure. Fresh install of Lucid Beta 1 aptitude

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-03-20 Thread jerrylamos
Lucid Beta 1 linux 2.6.32-16 did manage to get thru aptitude with -q and safe-upgrade. Anyone have any idea how -q avoids a crash? Jerry -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 *** https://bugs.launchpad.net/bugs/515525 You

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-03-20 Thread neu
jerrylamos: By using -q the progress bar doesn't show. The progress bar is probably what causes this problem, and it only crashes on certain terminal sizes (as seen in #22 and #21). -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-03-17 Thread Mazy
confirm. odd terminal size (100x40,120x40) causes crash. even (101x40, 120x40) - does not affects .. -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 *** https://bugs.launchpad.net/bugs/515525 You received this bug notification because

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-03-15 Thread neu
I looked into a weird workaround from bug #191094 which works in this case as well. This bug is related to the current terminal size. If I resize the terminal to 203x24, aptitude update works. 204x24 and 212x24 crashes. 200x24, 201x24, 202x24 and 205x24 works. -- aptitude assert failure: ***

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-03-10 Thread Neil Perry
As in comment 15, running with flag q seems to fix the issue. -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 *** https://bugs.launchpad.net/bugs/515525 You received this bug notification because you are a member of Ubuntu Bugs, which

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-03-08 Thread Florian Klug
i can confirm this too, no crash with -q -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 *** https://bugs.launchpad.net/bugs/515525 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-03-08 Thread Hacknslash
I also can confirm there is no crash with the -q flag, I have the backtrace of the original error if required. -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 *** https://bugs.launchpad.net/bugs/515525 You received this bug notification

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-03-08 Thread vmc
Yes -q works. Hopefully we will be getting a real fix soon. -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 *** https://bugs.launchpad.net/bugs/515525 You received this bug notification because you are a member of Ubuntu Bugs, which is

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-03-07 Thread Steffen Barszus
i can confirm its not crashing with -q -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 *** https://bugs.launchpad.net/bugs/515525 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-03-06 Thread IKT
What's going on with this bug? It's actually quite a pain, is a regression planned? -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 *** https://bugs.launchpad.net/bugs/515525 You received this bug notification because you are a member

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-03-06 Thread Roman Yepishev
*** glibc detected *** /usr/bin/aptitude: double free or corruption (!prev): 0x0852c6d0 *** (gdb) bt #0 0x00110832 in _dl_sysinfo_int80 () from /lib/ld-linux.so.2 #1 0x0064b601 in *__GI_raise (sig=6) at ../nptl/sysdeps/unix/sysv/linux/raise.c:64 #2 0x0064ea62 in *__GI_abort () at abort.c:92

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-03-06 Thread Roman Yepishev
Temporary workaround - start aptitude with -q flag that will disable the progress meter and will allow it to work fine until the issue is fixed. -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 *** https://bugs.launchpad.net/bugs/515525

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-03-05 Thread vmc
Using this command: sudo aptitude update sudo aptitude safe-upgrade Right after it completes the first part, it crashes. apt-get completes without error. Last part of message just before the crash: Hit http://us.archive.ubuntu.com lucid-updates/multiverse Sources

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-03-03 Thread Brian Murray
** Tags added: bugpattern-written ** Tags removed: bugpattern-needed -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 *** https://bugs.launchpad.net/bugs/515525 You received this bug notification because you are a member of Ubuntu Bugs,

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-03-01 Thread Ixzat
Got this error when running aptitude update. One source was really slow or something and it just sat at recieving headers for awhile and the got about the same error message. -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-02-28 Thread Apport retracing service
** Tags added: bugpattern-needed -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 *** https://bugs.launchpad.net/bugs/515525 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. --

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-02-27 Thread ec
experiencing same issue when running 'sudo aptitude update': *** glibc detected *** aptitude: free(): invalid next size (fast): 0x01c03280 *** === Backtrace: = /lib/libc.so.6(+0x77406)[0x7f9ba2667406] /lib/libc.so.6(cfree+0x73)[0x7f9ba266dc93] aptitude[0x526aa9]

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-02-25 Thread Nizuri
Downgrading to http://launchpadlibrarian.net/37134135/aptitude_0.4.11.11-1ubuntu8_i386.deb fixed the issue for me. (regression compared to -8 ) http://paste.ubuntu.com/383688/ Thanks to mvo_ and gronmefreak in the irc. -- aptitude assert failure: *** glibc detected *** aptitude: double free or

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-02-25 Thread Michael Vogt
** Changed in: aptitude (Ubuntu) Milestone: None = ubuntu-10.04-beta-1 ** Also affects: aptitude (Ubuntu Lucid) Importance: Medium Status: Triaged -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-02-24 Thread haeckse
Since today I get this every single time I run sudo aptitude get- upgrade. ** Attachment added: aptitude-lucid-crash.txt http://launchpadlibrarian.net/39742762/aptitude-lucid-crash.txt -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-02-24 Thread haeckse
Since today I get this every single time I run sudo aptitude get- upgrade. ** Attachment added: aptitude-lucid-crash.txt http://launchpadlibrarian.net/39742766/aptitude-lucid-crash.txt -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-02-22 Thread MaxistXXL
I experienced this bug when I tried to install subversion. -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 *** https://bugs.launchpad.net/bugs/515525 You received this bug notification because you are a member of Ubuntu Bugs, which is

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-02-21 Thread IKT
aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x09a61510 *** I'm experiencing a similar issue when doing 'aptitude update'. -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

[Bug 515525] Re: aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 ***

2010-02-19 Thread Daniel Hahler
** Changed in: aptitude (Ubuntu) Status: New = Triaged ** Visibility changed to: Public -- aptitude assert failure: *** glibc detected *** aptitude: double free or corruption (!prev): 0x08f9d658 *** https://bugs.launchpad.net/bugs/515525 You received this bug notification because you