Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Crashed with method +[OpenUDID valueWithError:], on iPhone 5s, iOS 10.1.1 #68

Open
ShannonChenCHN opened this issue Dec 21, 2016 · 5 comments

Comments

@ShannonChenCHN
Copy link

ShannonChenCHN commented Dec 21, 2016

Got crashed on iPhone 5s ( iOS 10.1.1) once I launched my app, but It got self-recovered after restart my iPhone. Is there Anyone facing the same annoying issue?

Here's the crash log below.

Incident Identifier: 2CB0CD31-2816-403B-904E-1853D1AD9B6D
CrashReporter Key: 77e9b2c94bb52416d5ddc0f8771f37ff7e96495d
Hardware Model: iPhone6,2
Process: [2055]
Path:
Identifier:
Version: 49 (1.0.0)
Code Type: ARM-64 (Native)
Role: Foreground
Parent Process: launchd [1]
Coalition: [1394]

Date/Time: 2016-12-21 16:13:48.7664 +0800
Launch Time: 2016-12-21 16:13:28.5736 +0800
OS Version: iPhone OS 10.1.1 (14B100)
Report Version: 104

Exception Type: EXC_CRASH (SIGKILL)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Termination Reason: Namespace SPRINGBOARD, Code 0x8badf00d
Triggered by Thread: 0

Filtered syslog:
None found

Thread 0 name: Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0 libsystem_kernel.dylib 0x000000018aa681a8 semaphore_wait_trap + 8
1 libdispatch.dylib 0x000000018a9537ec _dispatch_semaphore_wait_slow + 216
2 UIKit 0x0000000192138624 _existingItemCollectionWithName + 880
3 UIKit 0x000000019213802c +[_UIConcretePasteboard _pasteboardNamed:createIfNotFound:] + 264
4 UIKit 0x0000000191bdf37c +[UIPasteboard(Private) _pasteboardWithName:create:] + 148
5 YesIDo 0x0000000100322e14 +[OpenUDID valueWithError:] (OpenUDID.m:212)

@ShannonChenCHN ShannonChenCHN changed the title Crashed with method +[OpenUDID valueWithError:] Crashed with method +[OpenUDID valueWithError:], on iPhone5s, iOS 10.1.1 Dec 21, 2016
@ShannonChenCHN ShannonChenCHN changed the title Crashed with method +[OpenUDID valueWithError:], on iPhone5s, iOS 10.1.1 Crashed with method +[OpenUDID valueWithError:], on iPhone 5s, iOS 10.1.1 Dec 21, 2016
@MemoryReload
Copy link

@ShannonChenCHN Hey bro, now I faced the same fucking problem. Have you ever solved this? Any help will be appreciated.

@ShannonChenCHN
Copy link
Author

@MemoryReload To be honest, I couldn't fix it, but you could try another project FCUUID.

@MemoryReload
Copy link

@ShannonChenCHN Thank you, bro! Your reply gives me great help. : )

@AntonPetrov83
Copy link

Take a look at: adjust/ios_sdk#310

@FunnyerFeng
Copy link

OpenUDID 库中valueWithError 函数中
appUID = (NSString *) CFUUIDCreateString(NULL, uuid);存在内存泄露
需要
CFStringRef stringRef = CFUUIDCreateString(NULL,uuid);
CFRelease(stringRef);
或者
appUID = (__bridge_transfer NSString *) CFUUIDCreateString(NULL, uuid);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants