How to solve an iOS crash without app call stack?
Our app is crash online, not in debug mode.
We cannot reproduce the crash.
Here is the crash log which caught with bugly.
Anyone could help or some clue , Please!
#43 Thread
SIGSEGV
SEGV_ACCERR
0 libobjc.A.dylib objc_msgSend + 16
1 CoreFoundation ___CFPropertyListIsValidAux + 56
2 CoreFoundation ___CFPropertyListIsDictPlistAux + 188
3 CoreFoundation ___CFDictionaryApplyFunction_block_invoke + 24
4 CoreFoundation _CFBasicHashApply + 132
5 CoreFoundation CFDictionaryApplyFunction + 180
6 CoreFoundation ___CFPropertyListIsValidAux + 388
7 CoreFoundation CFPropertyListIsValid + 28
8 CFNetwork ___ZN12__CFURLCache23CreateAndStoreCacheNodeEP16__CFURLCacheNodePK20_CFCachedURLResponsePK10__CFStringPK13_CFURLRequestPKvbRb_block_invoke + 148
9 libdispatch.dylib __dispatch_call_block_and_release + 24
10 libdispatch.dylib __dispatch_client_callout + 16
11 libdispatch.dylib __dispatch_lane_serial_drain$VARIANT$mp + 592
12 libdispatch.dylib __dispatch_lane_invoke$VARIANT$mp + 432
13 libdispatch.dylib __dispatch_workloop_worker_thread + 600
14 libsystem_pthread.dylib _pthread_wqthread + 312
ios crash sigsegv
add a comment |
Our app is crash online, not in debug mode.
We cannot reproduce the crash.
Here is the crash log which caught with bugly.
Anyone could help or some clue , Please!
#43 Thread
SIGSEGV
SEGV_ACCERR
0 libobjc.A.dylib objc_msgSend + 16
1 CoreFoundation ___CFPropertyListIsValidAux + 56
2 CoreFoundation ___CFPropertyListIsDictPlistAux + 188
3 CoreFoundation ___CFDictionaryApplyFunction_block_invoke + 24
4 CoreFoundation _CFBasicHashApply + 132
5 CoreFoundation CFDictionaryApplyFunction + 180
6 CoreFoundation ___CFPropertyListIsValidAux + 388
7 CoreFoundation CFPropertyListIsValid + 28
8 CFNetwork ___ZN12__CFURLCache23CreateAndStoreCacheNodeEP16__CFURLCacheNodePK20_CFCachedURLResponsePK10__CFStringPK13_CFURLRequestPKvbRb_block_invoke + 148
9 libdispatch.dylib __dispatch_call_block_and_release + 24
10 libdispatch.dylib __dispatch_client_callout + 16
11 libdispatch.dylib __dispatch_lane_serial_drain$VARIANT$mp + 592
12 libdispatch.dylib __dispatch_lane_invoke$VARIANT$mp + 432
13 libdispatch.dylib __dispatch_workloop_worker_thread + 600
14 libsystem_pthread.dylib _pthread_wqthread + 312
ios crash sigsegv
2
This is happening in a block being executed by CFNetwork. It looks like an internal function that is caching a URL (or the response to opening a URL?). It appears to be attempting to validate a Property List, but something is causing a crash during that action.
– user1118321
Nov 21 '18 at 6:45
@user1118321thanks! but I still didn't find solution
– jiangjiefs
Nov 22 '18 at 2:17
So you crashed inobjc_msgSend
? sealiesoftware.com/blog/archive/2008/09/22/…
– matt
Nov 26 '18 at 6:38
@matt Yes , still not have any clue :(
– jiangjiefs
Nov 27 '18 at 2:11
It looks as if a check for a valid property list fails. The docs say: The file itself is typically encoded using the Unicode UTF-8 encoding and the contents are structured using XML. I would check that first.
– Reinhard Männer
Dec 2 '18 at 21:35
add a comment |
Our app is crash online, not in debug mode.
We cannot reproduce the crash.
Here is the crash log which caught with bugly.
Anyone could help or some clue , Please!
#43 Thread
SIGSEGV
SEGV_ACCERR
0 libobjc.A.dylib objc_msgSend + 16
1 CoreFoundation ___CFPropertyListIsValidAux + 56
2 CoreFoundation ___CFPropertyListIsDictPlistAux + 188
3 CoreFoundation ___CFDictionaryApplyFunction_block_invoke + 24
4 CoreFoundation _CFBasicHashApply + 132
5 CoreFoundation CFDictionaryApplyFunction + 180
6 CoreFoundation ___CFPropertyListIsValidAux + 388
7 CoreFoundation CFPropertyListIsValid + 28
8 CFNetwork ___ZN12__CFURLCache23CreateAndStoreCacheNodeEP16__CFURLCacheNodePK20_CFCachedURLResponsePK10__CFStringPK13_CFURLRequestPKvbRb_block_invoke + 148
9 libdispatch.dylib __dispatch_call_block_and_release + 24
10 libdispatch.dylib __dispatch_client_callout + 16
11 libdispatch.dylib __dispatch_lane_serial_drain$VARIANT$mp + 592
12 libdispatch.dylib __dispatch_lane_invoke$VARIANT$mp + 432
13 libdispatch.dylib __dispatch_workloop_worker_thread + 600
14 libsystem_pthread.dylib _pthread_wqthread + 312
ios crash sigsegv
Our app is crash online, not in debug mode.
We cannot reproduce the crash.
Here is the crash log which caught with bugly.
Anyone could help or some clue , Please!
#43 Thread
SIGSEGV
SEGV_ACCERR
0 libobjc.A.dylib objc_msgSend + 16
1 CoreFoundation ___CFPropertyListIsValidAux + 56
2 CoreFoundation ___CFPropertyListIsDictPlistAux + 188
3 CoreFoundation ___CFDictionaryApplyFunction_block_invoke + 24
4 CoreFoundation _CFBasicHashApply + 132
5 CoreFoundation CFDictionaryApplyFunction + 180
6 CoreFoundation ___CFPropertyListIsValidAux + 388
7 CoreFoundation CFPropertyListIsValid + 28
8 CFNetwork ___ZN12__CFURLCache23CreateAndStoreCacheNodeEP16__CFURLCacheNodePK20_CFCachedURLResponsePK10__CFStringPK13_CFURLRequestPKvbRb_block_invoke + 148
9 libdispatch.dylib __dispatch_call_block_and_release + 24
10 libdispatch.dylib __dispatch_client_callout + 16
11 libdispatch.dylib __dispatch_lane_serial_drain$VARIANT$mp + 592
12 libdispatch.dylib __dispatch_lane_invoke$VARIANT$mp + 432
13 libdispatch.dylib __dispatch_workloop_worker_thread + 600
14 libsystem_pthread.dylib _pthread_wqthread + 312
ios crash sigsegv
ios crash sigsegv
asked Nov 21 '18 at 6:35
jiangjiefsjiangjiefs
7910
7910
2
This is happening in a block being executed by CFNetwork. It looks like an internal function that is caching a URL (or the response to opening a URL?). It appears to be attempting to validate a Property List, but something is causing a crash during that action.
– user1118321
Nov 21 '18 at 6:45
@user1118321thanks! but I still didn't find solution
– jiangjiefs
Nov 22 '18 at 2:17
So you crashed inobjc_msgSend
? sealiesoftware.com/blog/archive/2008/09/22/…
– matt
Nov 26 '18 at 6:38
@matt Yes , still not have any clue :(
– jiangjiefs
Nov 27 '18 at 2:11
It looks as if a check for a valid property list fails. The docs say: The file itself is typically encoded using the Unicode UTF-8 encoding and the contents are structured using XML. I would check that first.
– Reinhard Männer
Dec 2 '18 at 21:35
add a comment |
2
This is happening in a block being executed by CFNetwork. It looks like an internal function that is caching a URL (or the response to opening a URL?). It appears to be attempting to validate a Property List, but something is causing a crash during that action.
– user1118321
Nov 21 '18 at 6:45
@user1118321thanks! but I still didn't find solution
– jiangjiefs
Nov 22 '18 at 2:17
So you crashed inobjc_msgSend
? sealiesoftware.com/blog/archive/2008/09/22/…
– matt
Nov 26 '18 at 6:38
@matt Yes , still not have any clue :(
– jiangjiefs
Nov 27 '18 at 2:11
It looks as if a check for a valid property list fails. The docs say: The file itself is typically encoded using the Unicode UTF-8 encoding and the contents are structured using XML. I would check that first.
– Reinhard Männer
Dec 2 '18 at 21:35
2
2
This is happening in a block being executed by CFNetwork. It looks like an internal function that is caching a URL (or the response to opening a URL?). It appears to be attempting to validate a Property List, but something is causing a crash during that action.
– user1118321
Nov 21 '18 at 6:45
This is happening in a block being executed by CFNetwork. It looks like an internal function that is caching a URL (or the response to opening a URL?). It appears to be attempting to validate a Property List, but something is causing a crash during that action.
– user1118321
Nov 21 '18 at 6:45
@user1118321thanks! but I still didn't find solution
– jiangjiefs
Nov 22 '18 at 2:17
@user1118321thanks! but I still didn't find solution
– jiangjiefs
Nov 22 '18 at 2:17
So you crashed in
objc_msgSend
? sealiesoftware.com/blog/archive/2008/09/22/…– matt
Nov 26 '18 at 6:38
So you crashed in
objc_msgSend
? sealiesoftware.com/blog/archive/2008/09/22/…– matt
Nov 26 '18 at 6:38
@matt Yes , still not have any clue :(
– jiangjiefs
Nov 27 '18 at 2:11
@matt Yes , still not have any clue :(
– jiangjiefs
Nov 27 '18 at 2:11
It looks as if a check for a valid property list fails. The docs say: The file itself is typically encoded using the Unicode UTF-8 encoding and the contents are structured using XML. I would check that first.
– Reinhard Männer
Dec 2 '18 at 21:35
It looks as if a check for a valid property list fails. The docs say: The file itself is typically encoded using the Unicode UTF-8 encoding and the contents are structured using XML. I would check that first.
– Reinhard Männer
Dec 2 '18 at 21:35
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53406450%2fhow-to-solve-an-ios-crash-without-app-call-stack%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53406450%2fhow-to-solve-an-ios-crash-without-app-call-stack%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
This is happening in a block being executed by CFNetwork. It looks like an internal function that is caching a URL (or the response to opening a URL?). It appears to be attempting to validate a Property List, but something is causing a crash during that action.
– user1118321
Nov 21 '18 at 6:45
@user1118321thanks! but I still didn't find solution
– jiangjiefs
Nov 22 '18 at 2:17
So you crashed in
objc_msgSend
? sealiesoftware.com/blog/archive/2008/09/22/…– matt
Nov 26 '18 at 6:38
@matt Yes , still not have any clue :(
– jiangjiefs
Nov 27 '18 at 2:11
It looks as if a check for a valid property list fails. The docs say: The file itself is typically encoded using the Unicode UTF-8 encoding and the contents are structured using XML. I would check that first.
– Reinhard Männer
Dec 2 '18 at 21:35