* Add a comment to FTBufferFont to not forget about bugs in it.
diff --git a/src/FTFont/FTBufferFont.cpp b/src/FTFont/FTBufferFont.cpp
index 73bed69..f2cb9a1 100644
--- a/src/FTFont/FTBufferFont.cpp
+++ b/src/FTFont/FTBufferFont.cpp
@@ -248,6 +248,7 @@ inline FTPoint FTBufferFontImpl::RenderI(const T* string, const int len,
{
free(stringCache[cacheIndex]);
}
+ // FIXME: only the first N bytes are copied; we want the first N chars.
stringCache[cacheIndex] = StringCopy(string, len);
bboxCache[cacheIndex] = BBox(string, len, FTPoint(), spacing);
}