[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Crash on app start due to icon
From: |
Riccardo Mottola |
Subject: |
Re: Crash on app start due to icon |
Date: |
Wed, 1 Aug 2018 18:30:03 +0200 |
User-agent: |
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0 SeaMonkey/2.49.3 |
Hi,
On 2018-08-01 13:33:39 +0200 Wolfgang Lux <wolfgang.lux@gmail.com> wrote:
Hi Riccardo,
This stack trace looks fairly weird to me; it seems like the debug
info does
not match the code. This reminds me of situations where my programs
got
linked to two different versions of a GNUstep library (a newer one
used
directly from the application and an older one linked indirectly from
some
library/bundle that I forgot to recompile). You might check using
info sharedlibrary
from the gdb prompt and looking for more than one instance of
libgnustep-gui.so in the list.
It is indeed strange, I saw that too.. however the problem is quite
reproducable. I will clean & check on this system (Debian)
I got this trace from another computer (Gentoo)
It is clearly "corrupted". I guess that the _app_icon is invalid.
Program received signal SIGSEGV, Segmentation fault.
0xb7b356a2 in -[NSApplication setApplicationIconImage:] (
self=0xb7b329d3 <-[NSApplication(Private) _loadAppIconImage]+483>,
_cmd=0x537200,
anImage=0xb7ece238 <_OBJC_SELECTOR_TABLE+3256>) at NSApplication.m:2392
2392 imageSize = [_app_icon size];
(gdb) bt
#0 0xb7b356a2 in -[NSApplication setApplicationIconImage:] (
self=0xb7b329d3 <-[NSApplication(Private) _loadAppIconImage]+483>,
_cmd=0x537200,
anImage=0xb7ece238 <_OBJC_SELECTOR_TABLE+3256>) at NSApplication.m:2392
#1 0x005ac9d0 in ?? ()
Backtrace stopped: previous frame inner to this frame (corrupt stack?)
(gdb) p _app_icon
$1 = (struct NSImage *) 0x2474ff55
(gdb) po _app_icon
Cannot access memory at address 0x2474ff55
If I back out exactly the two commits from Gregory, Ink (as well as
other apps, I'm using Ink only for simplicity) starts again.
Riccardo
- Re: Crash on app start due to icon, (continued)
- Re: Crash on app start due to icon, Yavor Doganov, 2018/08/10
- Re: Crash on app start due to icon, Fred Kiefer, 2018/08/03
- Re: Crash on app start due to icon, Fred Kiefer, 2018/08/03
- Re: Crash on app start due to icon, Riccardo Mottola, 2018/08/04
- Re: Crash on app start due to icon, Riccardo Mottola, 2018/08/04
- Re: Crash on app start due to icon, Fred Kiefer, 2018/08/04
Re: Crash on app start due to icon,
Riccardo Mottola <=