diff options
Diffstat (limited to 'packages/qte/qte-2.3.10/fix-linuxfb-offscreenoverflow.patch')
-rw-r--r-- | packages/qte/qte-2.3.10/fix-linuxfb-offscreenoverflow.patch | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/packages/qte/qte-2.3.10/fix-linuxfb-offscreenoverflow.patch b/packages/qte/qte-2.3.10/fix-linuxfb-offscreenoverflow.patch deleted file mode 100644 index a604630bda..0000000000 --- a/packages/qte/qte-2.3.10/fix-linuxfb-offscreenoverflow.patch +++ /dev/null @@ -1,22 +0,0 @@ -Fix an overflow when the amount of requested cache memory -is greater than the *lowest value -Manuel Teira <manuel.teira@telefonica.net> - -# -# Patch managed by http://www.holgerschurig.de/patcher.html -# - ---- qt-2.3.10/src/kernel/qgfxlinuxfb_qws.cpp~fix-linuxfb-offscreenoverflow -+++ qt-2.3.10/src/kernel/qgfxlinuxfb_qws.cpp -@@ -610,6 +610,11 @@ - - // No free blocks in already-taken memory; get some more - // if we can -+ if ( amount >= (*lowest ) ) { -+ //Avoid this overflow -+ qt_fbdpy->ungrab(); -+ return 0; -+ } - unsigned int newlowest = (*lowest)-amount; - if (newlowest % align) { - newlowest -= align; |