merged e87b3c1
This commit is contained in:
parent
32fb8171bf
commit
371d6406ea
1 changed files with 4 additions and 4 deletions
|
|
@ -148,7 +148,7 @@ id AFJSONDecode(NSData *data, NSError **error) {
|
||||||
NSUInteger parseOptionFlags = 0;
|
NSUInteger parseOptionFlags = 0;
|
||||||
[invocation setArgument:&parseOptionFlags atIndex:2]; // arguments 0 and 1 are self and _cmd respectively, automatically set by NSInvocation
|
[invocation setArgument:&parseOptionFlags atIndex:2]; // arguments 0 and 1 are self and _cmd respectively, automatically set by NSInvocation
|
||||||
if (error != NULL) {
|
if (error != NULL) {
|
||||||
[invocation setArgument:error atIndex:3];
|
[invocation setArgument:&error atIndex:3];
|
||||||
}
|
}
|
||||||
|
|
||||||
[invocation invoke];
|
[invocation invoke];
|
||||||
|
|
@ -172,7 +172,7 @@ id AFJSONDecode(NSData *data, NSError **error) {
|
||||||
NSUInteger yajlParserOptions = 0;
|
NSUInteger yajlParserOptions = 0;
|
||||||
[invocation setArgument:&yajlParserOptions atIndex:2]; // arguments 0 and 1 are self and _cmd respectively, automatically set by NSInvocation
|
[invocation setArgument:&yajlParserOptions atIndex:2]; // arguments 0 and 1 are self and _cmd respectively, automatically set by NSInvocation
|
||||||
if (error != NULL) {
|
if (error != NULL) {
|
||||||
[invocation setArgument:error atIndex:3];
|
[invocation setArgument:&error atIndex:3];
|
||||||
}
|
}
|
||||||
|
|
||||||
[invocation invoke];
|
[invocation invoke];
|
||||||
|
|
@ -185,7 +185,7 @@ id AFJSONDecode(NSData *data, NSError **error) {
|
||||||
|
|
||||||
[invocation setArgument:&data atIndex:2]; // arguments 0 and 1 are self and _cmd respectively, automatically set by NSInvocation
|
[invocation setArgument:&data atIndex:2]; // arguments 0 and 1 are self and _cmd respectively, automatically set by NSInvocation
|
||||||
if (error != NULL) {
|
if (error != NULL) {
|
||||||
[invocation setArgument:error atIndex:3];
|
[invocation setArgument:&error atIndex:3];
|
||||||
}
|
}
|
||||||
[invocation setArgument:&nullOption atIndex:4];
|
[invocation setArgument:&nullOption atIndex:4];
|
||||||
|
|
||||||
|
|
@ -203,7 +203,7 @@ id AFJSONDecode(NSData *data, NSError **error) {
|
||||||
NSUInteger readOptions = 0;
|
NSUInteger readOptions = 0;
|
||||||
[invocation setArgument:&readOptions atIndex:3];
|
[invocation setArgument:&readOptions atIndex:3];
|
||||||
if (error != NULL) {
|
if (error != NULL) {
|
||||||
[invocation setArgument:error atIndex:4];
|
[invocation setArgument:&error atIndex:4];
|
||||||
}
|
}
|
||||||
|
|
||||||
[invocation invoke];
|
[invocation invoke];
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue