Hi,

I am not 100% sure what the root cause is but this small modification
fixes it the problem:

root@kubuntu:~# diff /usr/lib/python2.7/dist-packages/apport/ui-orig.py 
/usr/lib/python2.7/dist-packages/apport/ui.py 
861c861,865
<                 icthread.exc_raise()
---
>                 try:
>                         icthread.exc_raise()
>                 except:
>                         self.ui_stop_info_collection_progress()
>                         raise
879c883,887
<                 bpthread.exc_raise()
---
>                 try:
>                       bpthread.exc_raise()
>                 except:
>                         self.ui_stop_info_collection_progress()
>                         raise
894c902,906
<                 known_thread.exc_raise()
---
>                 try:
>                       known_thread.exc_raise()
>                 except:
>                         self.ui_stop_info_collection_progress()
>                         raise
912c924,928
<             anonymize_thread.exc_raise()
---
>                 try:
>                       anonymize_thread.exc_raise()
>                 except:
>                         self.ui_stop_info_collection_progress()
>                         raise

There is probably a better way of fixing this within apport-kde but I
cannot figure it out.

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

Title:
  apport-kde segfault after ubuntu-bug run with non-existing package as
  argument

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/951611/+subscriptions

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to