This repository was archived by the owner on Jul 11, 2019. It is now read-only.

Description
In your examples I often see things like:
Tesseract.TessBaseAPIInit2(handle,
Pointer.pointerToCString("E:\\Masterarbeit\\Ressourcen\\tessdata"),
Pointer.pointerToCString("deu-frak"), OCREngineMode.DEFAULT);
I am currently investigating a memory leak in my application, and therefore I am wondering, should we not clean up those Pointer<Byte> that the Pointer.pointerToCString() makes, via Pointer#release?