Skip to content

Commit

Permalink
Updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
emcconville committed Sep 14, 2020
1 parent 314cb9e commit 913d368
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Version 0.6.3

Unreleased.

- Fixed buffer overflow bug in :meth:`Image.connected_components() <wand.image.BaseImage.connected_components>` method. [:issue:`496`]
- Added :meth:`Image.data_url() <wand.image.Image.data_url>` method. [:issue:`489`]
- Added :attr:`Image.sampling_factors <wand.image.BaseImage.sampling_factors>` property. [:issue:`491`]
- Added :meth:`Image.encipher() <wand.image.BaseImage.encipher>` & :meth:`Image.decipher() <wand.image.BaseImage.decipher>` methods.
Expand Down
1 change: 1 addition & 0 deletions wand/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -3978,6 +3978,7 @@ def connected_components(self, connectivity=4, area_threshold=None,
src_addr = objects_ptr.value + (i * ccoi_mem_size)
ctypes.memmove(ctypes.addressof(temp), src_addr, ccoi_mem_size)
objects.append(ConnectedComponentObject(temp))
del temp
objects_ptr = libmagick.RelinquishMagickMemory(objects_ptr)
else:
self.raise_exception()
Expand Down

0 comments on commit 913d368

Please sign in to comment.