summaryrefslogtreecommitdiffstats
path: root/recipes-graphics/directfb/files/fix-font-missing-char.patch
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2011-01-03 11:40:58 +0100
committerKoen Kooi <koen@dominion.thruhere.net>2011-01-03 12:02:34 +0100
commit156f6d3dc264c26f743a4359e4d40181a79ba038 (patch)
tree9dd3f8be261acb0a02cbc901d1cd70583351f93b /recipes-graphics/directfb/files/fix-font-missing-char.patch
parentd178c04eb55df22f13efb5e5f8677e33fd26a83c (diff)
downloadmeta-openembedded-156f6d3dc264c26f743a4359e4d40181a79ba038.tar.gz
directfb from OE
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;