summaryrefslogtreecommitdiff
path: root/pango/pangoft2-render.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2021-03-18 23:25:19 -0400
committerMatthias Clasen <mclasen@redhat.com>2021-03-18 23:43:42 -0400
commit4c02b0ad0a9d8f5fc3b09ae7ae45abf142f99d23 (patch)
treece7256f0120ce6110d20c96f2f7db610f162861d /pango/pangoft2-render.c
parent69a7dde587b14038cb6009608ed03618f0b3cbfd (diff)
downloadpango-4c02b0ad0a9d8f5fc3b09ae7ae45abf142f99d23.tar.gz
Use g_memdup2()memdup2
The g_memdup() function is replaced by a safer version in newer versions of GLib.
Diffstat (limited to 'pango/pangoft2-render.c')
-rw-r--r--pango/pangoft2-render.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/pango/pangoft2-render.c b/pango/pangoft2-render.c
index 45230fdb..45ac5820 100644
--- a/pango/pangoft2-render.c
+++ b/pango/pangoft2-render.c
@@ -25,6 +25,7 @@
#include "pango-font-private.h"
#include "pangoft2-private.h"
+#include "pango-impl-utils.h"
/* for compatibility with older freetype versions */
#ifndef FT_LOAD_TARGET_MONO
@@ -227,8 +228,8 @@ pango_ft2_font_render_glyph (PangoFont *font,
ft_render_mode_mono : ft_render_mode_normal));
rendered->bitmap = face->glyph->bitmap;
- rendered->bitmap.buffer = g_memdup (face->glyph->bitmap.buffer,
- face->glyph->bitmap.rows * face->glyph->bitmap.pitch);
+ rendered->bitmap.buffer = g_memdup2 (face->glyph->bitmap.buffer,
+ face->glyph->bitmap.rows * face->glyph->bitmap.pitch);
rendered->bitmap_left = face->glyph->bitmap_left;
rendered->bitmap_top = face->glyph->bitmap_top;