static void Image_dealloc()

in accimagemodule.c [265:270]


static void Image_dealloc(ImageObject *self) {
    if (self->buffer != NULL) {
        free(self->buffer);
        self->buffer = NULL;
    }
}