KERN_INVALID_ADDRESS error is a generic error that is followed by a specific memory address location.
Questions tagged [kern-invalid-address]
16 questions
4
votes
0 answers
Crashed: com.apple.root.default-qos from crashltics on iPhone7 ans iOS 10.1.0
Following crash log got from Fabric. Any idea or help would be great help for me.
Crashed: com.apple.root.default-qos
0 CFNetwork 0x19296a41c CoreSchedulingSet::copyWithUpdatesReleaseSelf(CoreSchedulingSet const*,…

Manish Nahar
- 834
- 10
- 24
4
votes
0 answers
iOS Swift: unsafeMutableAddressor crash on iOS 8
With the stack trace, unsafeMutableAddressor crash seems to be when it access AppConstant.kShowOverlay from controller's viewDidLoad()
I have defined AppConstant.swift like below:
struct AppConstant {
// MARK: Properties
static let…

O Fenômeno
- 445
- 3
- 14
4
votes
0 answers
EXC_BAD_ACCESS KERN_INVALID_ADDRESS at 0x00000000bbadbeef crash on UIWebview
Here is my viewDidLoad method:
- (void)viewDidLoad {
[super viewDidLoad];
[self setTitle:[self.parameters_ get:@"title"]];
whiteBGLayer = [[CALayer alloc] init];
[whiteBGLayer setBackgroundColor:[UIColor whiteColor].CGColor];
…

Devarshi
- 16,440
- 13
- 72
- 125
3
votes
1 answer
How to identify the state of an iOS App while crash occurs
With following crash log stack. Can I say that App was in Foreground state when crash occurred. because I can see UIKit calls.. What should one look to identified various state of App. like Suspended / Background / Foreground
**
#0
Crashed:…

Manish Nahar
- 834
- 10
- 24
2
votes
1 answer
com.apple.main-thread EXC_BAD_ACCESS KERN_INVALID_ADDRESS in cellForRowAt
I have experienced this crash in cellForRowAt the line number Crashlytics pointed me to was:
cell.table = questionTable
the entire case around that line is:
case .mcq_single:
if let cell = tableView.dequeueReusableCell(withIdentifier: "IQ_MCQCell")…

user2363025
- 6,365
- 19
- 48
- 89
2
votes
0 answers
EXC_BAD_ACCESS KERN_INVALID_ADDRESS iOS crash
I am getting below crash logs across all iOS versions. However, I am not able to figure out the exact cause of this. Is it something to do with accessing a de-allocated object? If yes, is there a way to replicate the scenario since I am not able…

Vijay Baswana
- 21
- 1
- 3
2
votes
1 answer
iOS CoreText crash: EXC_BAD_ACCESS KERN_INVALID_ADDRESS while setting view height
Following is the stack trace from Crashlytics, it crashes when text view's frame height is set:
(I got EXC_BAD_ACCESS KERN_INVALID_ADDRESS and SIGABRT ABORT crash at the same line @objc UIView.height.setter (UIView+.swift))
EXC_BAD_ACCESS…

O Fenômeno
- 445
- 3
- 14
1
vote
0 answers
I am getting EXC_BAD_ACCESS in creating NSString using stringWithFormat
Stack trace:
0 libobjc.A.dylib 0x00007fff2021a26e objc_opt_respondsToSelector + 27
1 com.apple.CoreFoundation 0x00007fff20405674 __CFStringAppendFormatCore + 9123
2 com.apple.CoreFoundation 0x00007fff20534412…

Monika Nainwal
- 11
- 1
1
vote
0 answers
Unable to figure out specialized static crash
I am facing this crash from crashlytics that I am unable to figure out. The name of the app scheme is DMC and the title of the crashlytics report is "specialized static OfflineManager.putData(path: content:)". Here is the crash report
Crashed:…

Sarthak Mishra
- 1,033
- 1
- 11
- 27
1
vote
0 answers
EXC_BAD_ACCESS on application start
In my macOS application I have a very rare crash which I cannot reproduce and I can't find out what causes it.
Please see the call stack below.
Here are my thoughts:
It seems to happen on application start because there's NSPersistentUIRestorer in…

Dan Pristupov
- 51
- 1
- 8
1
vote
1 answer
Swift crash report without much information
I'm getting this same basic crash report for all the apps I have worked on in swift for our company. It happens a small percentage of the time. There isn't much information to go by. The only line shown from our app is AppDelegate.swift which was…

Brian
- 105
- 12
1
vote
2 answers
App crash randomly on some iOS9 devices after closing camera controller
I got the following crash report, sent by a user, but I don't know the possible reason. The app crash randomly when calling
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info…

christian mini
- 1,662
- 20
- 39
1
vote
0 answers
swift Crashed: com.apple.main-thread
My app runs fine on the local environment, When I publish it to the appStore, The problem happened:
Crashed: com.apple.main-thread
EXC_BAD_ACCESS KERN_INVALID_ADDRESS at 0x0000000130d0bec8
The crash infomation is coming from…

Fran Zhou
- 43
- 5
0
votes
0 answers
Heap Gives Page Fault
I am now getting a page fault which means i am accessing an invalid address. This is most likely to the higher half kernel design i chose to follow. But i could not see where it leads to a page fault. Here is my kernel.c++
#include…

amanuel2
- 4,508
- 4
- 36
- 67
0
votes
0 answers
EXC_BAD_ACCESS KERN_INVALID_ADDRESS 0x0000000000000000 on NSUserDefaults getValueForKey: method.
I have a weird crash while using NSUserDefaults and I'm unable to reproduce this myself but I get this reported from Crashlytics from one of user's devices.
Exception: EXC_BAD_ACCESS KERN_INVALID_ADDRESS 0x0000000000000000
Crashed:…

Ravi
- 523
- 8
- 23