Re: [Bug 1034005] Re: upowerd crashed with SIGSEGV in __stpcpy_chk()

2012-11-12 Thread mauriicio
hi,
for me, this bug happened after lubuntu-upgrade to 12.10
then, i made a fresh install, from mini.iso, only with the necessary
packages for me, and the problems disappear.


2012/11/10 Wolf Rogner w...@rsb.at

 I have upowerd 0.9.17-1build1 installed.

 It crashes on every resume from RAM (even when the monitor just dimms).

 afaic this is not fixed at all

 (12.10 64bit Mac running the latest patches)

 --
 You received this bug notification because you are subscribed to a
 duplicate bug report (1062276).
 https://bugs.launchpad.net/bugs/1034005

 Title:
   upowerd crashed with SIGSEGV in __stpcpy_chk()

 To manage notifications about this bug go to:
 https://bugs.launchpad.net/libimobiledevice/+bug/1034005/+subscriptions


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

Title:
  upowerd crashed with SIGSEGV in __stpcpy_chk()

To manage notifications about this bug go to:
https://bugs.launchpad.net/libimobiledevice/+bug/1034005/+subscriptions

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


[Bug 1034005] Re: upowerd crashed with SIGSEGV in __stpcpy_chk()

2012-11-10 Thread Wolf Rogner
I have upowerd 0.9.17-1build1 installed.

It crashes on every resume from RAM (even when the monitor just dimms).

afaic this is not fixed at all

(12.10 64bit Mac running the latest patches)

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

Title:
  upowerd crashed with SIGSEGV in __stpcpy_chk()

To manage notifications about this bug go to:
https://bugs.launchpad.net/libimobiledevice/+bug/1034005/+subscriptions

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


[Bug 1034005] Re: upowerd crashed with SIGSEGV in __stpcpy_chk()

2012-10-04 Thread Slava Polonsky
** Changed in: upower (Ubuntu)
   Status: Confirmed = Fix Released

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

Title:
  upowerd crashed with SIGSEGV in __stpcpy_chk()

To manage notifications about this bug go to:
https://bugs.launchpad.net/libimobiledevice/+bug/1034005/+subscriptions

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


[Bug 1034005] Re: upowerd crashed with SIGSEGV in __stpcpy_chk()

2012-10-02 Thread Adam Dingle
Just like the previous commenter, I saw this crash right after I plugged
in my iPhone.

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

Title:
  upowerd crashed with SIGSEGV in __stpcpy_chk()

To manage notifications about this bug go to:
https://bugs.launchpad.net/libimobiledevice/+bug/1034005/+subscriptions

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


[Bug 1034005] Re: upowerd crashed with SIGSEGV in __stpcpy_chk()

2012-09-27 Thread Steven Buh
crashed after plugging in my iPhone

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

Title:
  upowerd crashed with SIGSEGV in __stpcpy_chk()

To manage notifications about this bug go to:
https://bugs.launchpad.net/libimobiledevice/+bug/1034005/+subscriptions

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


[Bug 1034005] Re: upowerd crashed with SIGSEGV in __stpcpy_chk()

2012-09-14 Thread Clint Byrum
Raising to High.. 412 affected == a big problem

** Changed in: upower (Ubuntu)
   Importance: Medium = High

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

Title:
  upowerd crashed with SIGSEGV in __stpcpy_chk()

To manage notifications about this bug go to:
https://bugs.launchpad.net/libimobiledevice/+bug/1034005/+subscriptions

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


[Bug 1034005] Re: upowerd crashed with SIGSEGV in __stpcpy_chk()

2012-09-08 Thread shawnlandden
This NULL deference when HOME is not defined appears to be fixed in the
latest version of libmobiledevice (or rather libmobiledevice git) in
src/usrprefs.c:userprefs_get_config_dir()

reassigneing to where bug is coming from

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

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

Title:
  upowerd crashed with SIGSEGV in __stpcpy_chk()

To manage notifications about this bug go to:
https://bugs.launchpad.net/libimobiledevice/+bug/1034005/+subscriptions

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


[Bug 1034005] Re: upowerd crashed with SIGSEGV in __stpcpy_chk()

2012-09-08 Thread shawnlandden
actually, I still don't like the user of getenv(HOME); over

   struct passwd pwd;
   errno = 0;
   pwd = getpwuid(getuid());
   if (pwd)
   cdir = pwd-pw_dir;
   else {
   //error handling
   }

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

Title:
  upowerd crashed with SIGSEGV in __stpcpy_chk()

To manage notifications about this bug go to:
https://bugs.launchpad.net/libimobiledevice/+bug/1034005/+subscriptions

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


[Bug 1034005] Re: upowerd crashed with SIGSEGV in __stpcpy_chk()

2012-09-06 Thread Dmitrijs Ledkovs
** Visibility changed to: Public

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

Title:
  upowerd crashed with SIGSEGV in __stpcpy_chk()

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

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


[Bug 1034005] Re: upowerd crashed with SIGSEGV in __stpcpy_chk()

2012-09-06 Thread bar
after deleting KDE desktop packages

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

Title:
  upowerd crashed with SIGSEGV in __stpcpy_chk()

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

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