-
Notifications
You must be signed in to change notification settings - Fork 248
Commit
- Loading branch information
There are no files selected for viewing
5 comments
on commit f0fc850
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wow! I did exact same changes on my branch before I found this. Can this be tagged, please!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here; could we get a tag? Thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi, sure. I'm doing few other fixes and I will do a tag!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tagged as 1.4.5
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome. Thanks a bunch!
128 - __weak typeof (self)bself = self;
127 + id bself = self;
This change appears to be causing FPPopoverController to not get released due to the extra retain from the assignment of self. Under ARC, I am using, which appears to resolve this issue:
Not sure about no arc scenario.