GC.free doesnt actually work w/o base addr

This commit is contained in:
Adam D. Ruppe 2021-01-14 22:20:47 -05:00
parent 86c76a39bb
commit 5134e8c279
1 changed files with 3 additions and 3 deletions

View File

@ -935,8 +935,8 @@ class IndexedImage : MemoryImage {
override void clearInternal () nothrow @system {// @nogc {
import core.memory : GC;
// it is safe to call [GC.free] with `null` pointer.
GC.free(palette.ptr); palette = null;
GC.free(data.ptr); data = null;
GC.free(GC.addrOf(palette.ptr)); palette = null;
GC.free(GC.addrOf(data.ptr)); data = null;
_width = _height = 0;
}
@ -1076,7 +1076,7 @@ class TrueColorImage : MemoryImage {
override void clearInternal () nothrow @system {// @nogc {
import core.memory : GC;
// it is safe to call [GC.free] with `null` pointer.
GC.free(imageData.bytes.ptr); imageData.bytes = null;
GC.free(GC.addrOf(imageData.bytes.ptr)); imageData.bytes = null;
_width = _height = 0;
}