dmaclach

Results 32 comments of dmaclach

I hit the same issue macOS 10.12.5 ``` bin/go-mtpfs -debug usb,data,mtp,fuse xoom 2017/06/30 09:28:52 fatal error LIBUSB_ERROR_NOT_FOUND; closing connection. 2017/06/30 09:28:52 MTP request OpenSession [726241119] send: 0x10 bytes with ep...

Here's what was happening: Objective C deadstrips by class (not by method). If you don't have a reference to a class directly in your code by name (i.e. [Foo aMethod])...

With https://github.com/iziz/libPhoneNumber-iOS/pull/175, the following code appears to work: NSError *error = nil; NBPhoneNumber *phoneNumberUS = [phoneUtil parse:@"14155552671" defaultRegion:@"US" error:&error]; NSLog(@"- isValidNumber [%@]", [phoneUtil isValidNumber:phoneNumberUS] ? @"YES" : @"NO"); NSLog(@"- isPossibleNumber...

I'm not actually seeing a failure here. When I call extractPossibleNumber: with @"https://c/c/xl/-9" as an argument, it returns "9". On Thu, Oct 12, 2017 at 4:22 AM, Nailer wrote: >...

I honestly can't remember. At that point I was trying to extract a bunch of changes I had made into small bits I could submit for review. I may have...

Found an issue where calling "isKindOfClass" on proxies was causing issues. Replaced with `[OCMArg isUnretained]` which calls `objc_getClass` instead.

I hadn't realized that my last push had put this in a horribly mixed up state. I think it's much cleaner now.