Guest User

Untitled

a guest
Jan 23rd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.48 KB | None | 0 0
  1. PMLOG(1,@"WAITING_FOR_FINAL_PURCHASE_BUTTON: setting today");
  2. NSDate *today =[[NSDate date] retain];
  3. PMLOG(1,@"WAITING_FOR_FINAL_PURCHASE_BUTTON: creating formatter");
  4. NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
  5. PMLOG(1,@"WAITING_FOR_FINAL_PURCHASE_BUTTON: execute setDateFormat");
  6. // Here there be crashes
  7. [formatter setDateFormat:@"dd-MM-yyyy HH:mm"];
  8. PMLOG(1,@"WAITING_FOR_FINAL_PURCHASE_BUTTON: setting purchaseDate");
  9. NSString *purchaseDate = [[formatter stringFromDate:today] retain];
  10. PMLOG(1,@"WAITING_FOR_FINAL_PURCHASE_BUTTON: purchaseDate: %@", purchaseDate);
  11. PMLOG(1,@"WAITING_FOR_FINAL_PURCHASE_BUTTON: releasing");
  12. [formatter release];
  13. [today release];
  14. PMLOG(1,@"WAITING_FOR_FINAL_PURCHASE_BUTTON: date formatted");
  15.  
  16. Exception Type: EXC_BAD_ACCESS (SIGSEGV)
  17. Exception Codes: KERN_INVALID_ADDRESS at 0x0000000061636385
  18. Crashed Thread: 0 Dispatch queue: com.apple.main-thread
  19.  
  20. Application Specific Information:
  21. objc_msgSend() selector name: retain
  22.  
  23.  
  24. Thread 0 Crashed: Dispatch queue: com.apple.main-thread
  25. 0 libobjc.A.dylib 0x955ffed7 objc_msgSend + 23
  26. 1 com.apple.CoreFoundation 0x94f759e2 __CFBasicHashAddValue + 50
  27. 2 com.apple.CoreFoundation 0x94f7e0b9 CFBasicHashSetValue + 169
  28. 3 com.apple.CoreFoundation 0x94f7deba CFDictionarySetValue + 202
  29. 4 com.apple.CoreFoundation 0x94fbbb74 -[CFXPreferencesSearchListSource copyDictionary] + 228
  30. 5 com.apple.CoreFoundation 0x9507c30a _CFXPreferencesCopyDictionaryForApplicationPreferences + 74
  31. 6 com.apple.Foundation 0x93bd25d1 -[NSUserDefaults(NSUserDefaults) dictionaryRepresentation] + 18
  32. 7 com.apple.Foundation 0x93a7c614 -[NSDateFormatter stringForObjectValue:] + 182
  33. 8 com.vitezagroup.H6 0x0000aba8 -[WebFrameLoadDelegate webView:didFinishLoadForFrame:] + 11742 (WebFrameLoadDelegate.m:805)
  34. 9 com.apple.WebKit 0x90420610 CallDelegate(objc_object* (*)(objc_object*, objc_selector*, ...), WebView*, objc_object*, objc_selector*, objc_object*) + 240
  35. 10 com.apple.WebKit 0x903c1d4a WebFrameLoaderClient::dispatchDidFinishLoad() + 106
  36. 11 com.apple.WebCore 0x940dde55 WebCore::FrameLoader::checkLoadCompleteForThisFrame() + 277
  37. 12 com.apple.WebCore 0x940ddcb6 WebCore::FrameLoader::recursiveCheckLoadComplete() + 246
  38. 13 com.apple.WebCore 0x94143117 WebCore::FrameLoader::finishedLoading() + 135
  39. 14 com.apple.WebCore 0x9414303f WebCore::MainResourceLoader::didFinishLoading() + 127
  40. 15 com.apple.Foundation 0x93a8d56b -[NSURLConnection(NSURLConnectionReallyInternal) sendDidFinishLoading] + 84
  41. 16 com.apple.Foundation 0x93a8d4dc _NSURLConnectionDidFinishLoading + 133
  42. 17 com.apple.CFNetwork 0x950f9453 URLConnectionClient::_clientDidFinishLoading(URLConnectionClient::ClientConnectionEventQueue*) + 197
  43. 18 com.apple.CFNetwork 0x95170b88 URLConnectionClient::ClientConnectionEventQueue::processAllEventsAndConsumePayload(XConnectionEventInfo<XClientEvent, XClientEventParams>*, long) + 306
  44. 19 com.apple.CFNetwork 0x95170e52 URLConnectionClient::ClientConnectionEventQueue::processAllEventsAndConsumePayload(XConnectionEventInfo<XClientEvent, XClientEventParams>*, long) + 1020
  45. 20 com.apple.CFNetwork 0x950ebab8 URLConnectionClient::processEvents() + 94
  46. 21 com.apple.CFNetwork 0x950eb95b MultiplexerSource::perform() + 183
  47. 22 com.apple.CoreFoundation 0x94fa34cb __CFRunLoopDoSources0 + 1563
  48. 23 com.apple.CoreFoundation 0x94fa0f8f __CFRunLoopRun + 1071
  49. 24 com.apple.CoreFoundation 0x94fa0464 CFRunLoopRunSpecific + 452
  50. 25 com.apple.CoreFoundation 0x94fa0291 CFRunLoopRunInMode + 97
  51. 26 com.apple.HIToolbox 0x93d26004 RunCurrentEventLoopInMode + 392
  52. 27 com.apple.HIToolbox 0x93d25dbb ReceiveNextEventCommon + 354
  53. 28 com.apple.HIToolbox 0x93d25c40 BlockUntilNextEventMatchingListInMode + 81
  54. 29 com.apple.AppKit 0x96beb78d _DPSNextEvent + 847
  55. 30 com.apple.AppKit 0x96beafce -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
  56. 31 com.apple.AppKit 0x96bad247 -[NSApplication run] + 821
  57. 32 com.apple.AppKit 0x96ba52d9 NSApplicationMain + 574
  58. 33 com.vitezagroup.H6 0x00002e10 main + 306 (main.m:26)
  59. 34 com.vitezagroup.H6 0x00002cc2 _start + 216
  60. 35 com.vitezagroup.H6 0x00002be9 start + 41
Add Comment
Please, Sign In to add comment