Changeset 69792 in webkit


Ignore:
Timestamp:
Oct 14, 2010 12:23:10 PM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-10-14 Rafael Antognolli <antognolli@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):
Location:
trunk/WebKit/efl
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/efl/ChangeLog

    r69783 r69792  
     12010-10-14  Rafael Antognolli  <antognolli@profusion.mobi>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [EFL] Use data_set after data_get to keep refcount correct.
     6        https://bugs.webkit.org/show_bug.cgi?id=47110
     7
     8        The call to evas_object_image_data_set was missed in this function,
     9        which caused the refcount of the data being always increased on every
     10        scroll.
     11
     12        * ewk/ewk_view_single.c:
     13        (_ewk_view_single_smart_scrolls_process):
     14
    1152010-10-14  Ryuan Choi  <ryuan.choi@samsung.com>
    216
  • trunk/WebKit/efl/ewk/ewk_view_single.c

    r60362 r69792  
    349349        _ewk_view_single_scroll_process_single(sd, pixels, ow, oh, sr);
    350350
     351    evas_object_image_data_set(sd->backing_store, pixels);
     352
    351353    return EINA_TRUE;
    352354}
Note: See TracChangeset for help on using the changeset viewer.