[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 14:38:44 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 9afe0062712a5edc7c1bbbaeffaeb79ba6a6980f
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Oct 14 19:23:10 2010 +0000

    2010-10-14  Rafael Antognolli  <antognolli at profusion.mobi>
    
            Reviewed by Eric Seidel.
    
            [EFL] Use data_set after data_get to keep refcount correct.
            https://bugs.webkit.org/show_bug.cgi?id=47110
    
            The call to evas_object_image_data_set was missed in this function,
            which caused the refcount of the data being always increased on every
            scroll.
    
            * ewk/ewk_view_single.c:
            (_ewk_view_single_smart_scrolls_process):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@69792 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/efl/ChangeLog b/WebKit/efl/ChangeLog
index 060d94f..6870bba 100644
--- a/WebKit/efl/ChangeLog
+++ b/WebKit/efl/ChangeLog
@@ -1,3 +1,17 @@
+2010-10-14  Rafael Antognolli  <antognolli at profusion.mobi>
+
+        Reviewed by Eric Seidel.
+
+        [EFL] Use data_set after data_get to keep refcount correct.
+        https://bugs.webkit.org/show_bug.cgi?id=47110
+
+        The call to evas_object_image_data_set was missed in this function,
+        which caused the refcount of the data being always increased on every
+        scroll.
+
+        * ewk/ewk_view_single.c:
+        (_ewk_view_single_smart_scrolls_process):
+
 2010-10-14  Ryuan Choi  <ryuan.choi at samsung.com>
 
         Reviewed by Eric Seidel.
diff --git a/WebKit/efl/ewk/ewk_view_single.c b/WebKit/efl/ewk/ewk_view_single.c
index 803b219..85e5339 100644
--- a/WebKit/efl/ewk/ewk_view_single.c
+++ b/WebKit/efl/ewk/ewk_view_single.c
@@ -348,6 +348,8 @@ static Eina_Bool _ewk_view_single_smart_scrolls_process(Ewk_View_Smart_Data *sd)
     for (; sr < sr_end; sr++)
         _ewk_view_single_scroll_process_single(sd, pixels, ow, oh, sr);
 
+    evas_object_image_data_set(sd->backing_store, pixels);
+
     return EINA_TRUE;
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list