Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/edje

Dir     : e17/libs/edje/src/lib


Modified Files:
        edje_message_queue.c 


Log Message:


BUGGERS.... squished. why didnt anyone spot this? :-(

===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/edje/src/lib/edje_message_queue.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- edje_message_queue.c        2 Jul 2004 10:17:25 -0000       1.5
+++ edje_message_queue.c        6 Jul 2004 02:40:14 -0000       1.6
@@ -512,7 +512,7 @@
 
    if (ed->message.num <= 0) return;
    /* delete any messages on the main queue for this edje object */
-   for (l = msgq; ; )
+   for (l = msgq; l; )
      {
        Edje_Message *em;
        Evas_List *lp;
@@ -528,7 +528,7 @@
        if (ed->message.num <= 0) return;
      }
    /* delete any on the processing queue */
-   for (l = tmp_msgq; ; )
+   for (l = tmp_msgq; l; )
      {
        Edje_Message *em;
        Evas_List *lp;
@@ -538,7 +538,7 @@
        l = l->next;
        if (em->edje == ed)
          {
-            msgq = evas_list_remove_list(msgq, lp);
+            tmp_msgq = evas_list_remove_list(tmp_msgq, lp);
             _edje_message_free(em);
          }
        if (ed->message.num <= 0) return;




-------------------------------------------------------
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
_______________________________________________
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to