> Can somebody help me with a memory leak issue that I'm having when I
> use FTC_ImageCache_Lookup() and FT_Glyph_Copy()?

Here is David's reply:

  this code is simply buggy. for example, the line that says:

    glyph_ptr = &tmp_glyph;

  is invalid because tmp_glyph is a local variable defined in the
  inner scope, and the glyph_ptr value is later used in an outer
  scope.


    Werner


_______________________________________________
Freetype mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/freetype

Reply via email to