Skip to content
Snippets Groups Projects
Commit e9e159ed authored by cramakri's avatar cramakri
Browse files

Fixed aliasing of local refcon variable which lead to a bug

SVN: 27346
parent c4c21bba
No related merge requests found
......@@ -57,7 +57,7 @@
if (nil == refcon) {
NSError *error;
id refcon = [NSJSONSerialization JSONObjectWithData: [self.refconJson dataUsingEncoding: NSASCIIStringEncoding] options: 0 error: &error];
refcon = [NSJSONSerialization JSONObjectWithData: [self.refconJson dataUsingEncoding: NSASCIIStringEncoding] options: 0 error: &error];
if (error) {
NSLog(@"Could not deserialize refcon %@", error);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment