summaryrefslogtreecommitdiffstats
path: root/recipes-graphics/directfb/files/fix-font-missing-char.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-graphics/directfb/files/fix-font-missing-char.patch')
-rw-r--r--recipes-graphics/directfb/files/fix-font-missing-char.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/recipes-graphics/directfb/files/fix-font-missing-char.patch b/recipes-graphics/directfb/files/fix-font-missing-char.patch
new file mode 100644
index 0000000000..4c5e5883f4
--- /dev/null
+++ b/recipes-graphics/directfb/files/fix-font-missing-char.patch
@@ -0,0 +1,11 @@
1--- git/src/media/idirectfbfont.c~org 2007-07-10 10:35:46.000000000 -0400
2+++ git/src/media/idirectfbfont.c 2007-07-10 10:36:09.000000000 -0400
3@@ -497,7 +497,7 @@
4
5 if (width<max_width && string >= end) {
6 *ret_next_line = NULL;
7- *ret_str_length = length-1;
8+ *ret_str_length = length;
9 *ret_width = width;
10
11 return DFB_OK;