Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix memory leak in Patch in Objective-C version #156

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

atdrendel
Copy link

The NSMutableArray being assigned to Patch.diffs isn't being autoreleased correctly. Since it's being assigned to a synthesized property marked with retain, and the NSMutableArray is being initialized with alloc-init, the array needs to be autoreleased so that it doesn't leak.

The NSMutableArray being assigned to Patch.diffs isn't being autoreleased correctly. Since it's being assigned to a synthesized property marked with retain, and the NSMutableArray is being initialized with alloc-init, the array needs to be autoreleased so that it doesn't leak.
Copy link

google-cla bot commented Mar 19, 2024

Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA).

View this failed invocation of the CLA check for more information.

For the most up to date status, view the checks section at the bottom of the pull request.

dmsnell pushed a commit to dmsnell/diff-match-patch that referenced this pull request Mar 22, 2024
Resolves google#156.

The NSMutableArray being assigned to Patch.diffs isn't being autoreleased correctly. Since it's being assigned to a synthesized property marked with retain, and the NSMutableArray is being initialized with alloc-init, the array needs to be autoreleased so that it doesn't leak.

See also Simperium/simperium-ios#89

Authored-by: Anthony Drendel <atdrendel@users.noreply.github.com>
@dmsnell
Copy link

dmsnell commented Mar 22, 2024

@atdrendel with @jleandroperez' help I found that we applied an identical patch back in 2013

Simperium/simperium-ios@685c16d

Seems to have been working since then. I've applied this to my fork, which I'm trying to maintain now since this repo is hibernating.

dmsnell@5337709

samrayner pushed a commit to samrayner/diff-match-patch that referenced this pull request May 6, 2024
Resolves google/diff-match-patch#156.

The NSMutableArray being assigned to Patch.diffs isn't being autoreleased correctly. Since it's being assigned to a synthesized property marked with retain, and the NSMutableArray is being initialized with alloc-init, the array needs to be autoreleased so that it doesn't leak.

See also Simperium/simperium-ios#89

Authored-by: Anthony Drendel <atdrendel@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants