Thanks muchly!!

Daniel Juyung Seo (SeoZ)

On Tue, Jan 29, 2013 at 10:48 PM, Enlightenment SVN
<no-re...@enlightenment.org> wrote:
> Log:
> fix edje cache miss
>
>
>
> Author:       raster
> Date:         2013-01-29 05:48:15 -0800 (Tue, 29 Jan 2013)
> New Revision: 83431
> Trac:         http://trac.enlightenment.org/e/changeset/83431
>
> Modified:
>   trunk/efl/ChangeLog trunk/efl/NEWS trunk/efl/src/lib/edje/edje_cache.c
>
> Modified: trunk/efl/ChangeLog
> ===================================================================
> --- trunk/efl/ChangeLog 2013-01-29 10:47:56 UTC (rev 83430)
> +++ trunk/efl/ChangeLog 2013-01-29 13:48:15 UTC (rev 83431)
> @@ -1,3 +1,8 @@
> +2013-01-29  Carsten Haitzler (The Rasterman)
> +
> +        * Fix cache miss bug when edje cache hash is null, but cache
> +        list may have entries.
> +
>  2013-01-25  Jihoon Kim (jihoon)
>
>         * edje entry : Remove ecore_imf_context_reset, cursor update in mouse 
> move event because it's useless.
> @@ -3,5 +8,4 @@
>         * edje entry : move ecore_imf_context_cursor_position_set from mouse 
> down event to mouse up event
>
> -
>  2013-01-24  Sung W. Park (sung_)
>
>
> Modified: trunk/efl/NEWS
> ===================================================================
> --- trunk/efl/NEWS      2013-01-29 10:47:56 UTC (rev 83430)
> +++ trunk/efl/NEWS      2013-01-29 13:48:15 UTC (rev 83431)
> @@ -132,3 +132,5 @@
>      * Fixed x11 error sync issue with ecore_x_image_get()
>      * Fix evas gif loader to return the correct frame duration
>      * Prevent a crash even if an invalid object is swallowed into an edje 
> object.
> +    * Fix cache mise when active edje hash is empty.
> +
>
> Modified: trunk/efl/src/lib/edje/edje_cache.c
> ===================================================================
> --- trunk/efl/src/lib/edje/edje_cache.c 2013-01-29 10:47:56 UTC (rev 83430)
> +++ trunk/efl/src/lib/edje/edje_cache.c 2013-01-29 13:48:15 UTC (rev 83431)
> @@ -318,7 +318,7 @@
>     if (!_edje_file_hash)
>       {
>         _edje_file_hash = eina_hash_string_small_new(NULL);
> -       goto open_new;
> +       goto find_list;
>       }
>
>     edf = eina_hash_find(_edje_file_hash, file);
> @@ -333,7 +333,8 @@
>         edf->references++;
>         goto open;
>       }
> -
> +
> +find_list:
>     EINA_LIST_FOREACH(_edje_file_cache, l, edf)
>       {
>         if (!strcmp(edf->path, file))
>
>
> ------------------------------------------------------------------------------
> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> MVPs and experts. ON SALE this month only -- learn more at:
> http://p.sf.net/sfu/learnnow-d2d
> _______________________________________________
> enlightenment-svn mailing list
> enlightenment-...@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-svn

------------------------------------------------------------------------------
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to