Enlightenment CVS committal

Author  : chaos
Project : e17
Module  : apps/evfs

Dir     : e17/apps/evfs/src/common


Modified Files:
        evfs_cleanup.c evfs_io.c 


Log Message:
* eet->sqlite3, step 1

===================================================================
RCS file: /cvs/e/e17/apps/evfs/src/common/evfs_cleanup.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -3 -r1.21 -r1.22
--- evfs_cleanup.c      17 Jul 2006 05:45:38 -0000      1.21
+++ evfs_cleanup.c      19 Jul 2006 16:27:10 -0000      1.22
@@ -166,16 +166,14 @@
 
 evfs_cleanup_metadata_groups_event(evfs_event* event) 
 {
-       if (evfs_object_client_is_get()) {
-               Evas_List* l;
+       Evas_List* l;
 
-               for (l=event->misc.string_list; l;) {
-                       free(l->data);
+       for (l=event->misc.string_list; l;) {
+               free(l->data);
 
-                       l = l->next;
-               }
-               evas_list_free(event->misc.string_list);
+               l = l->next;
        }
+       evas_list_free(event->misc.string_list);
 }
 
 void
===================================================================
RCS file: /cvs/e/e17/apps/evfs/src/common/evfs_io.c,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -3 -r1.63 -r1.64
--- evfs_io.c   17 Jul 2006 14:45:09 -0000      1.63
+++ evfs_io.c   19 Jul 2006 16:27:10 -0000      1.64
@@ -300,7 +300,7 @@
 void evfs_write_metadata_groups_event(evfs_client* client, evfs_event* event)
 {
        Evas_List* l;
-       evfs_metadata_group_header* g;
+       char* g;
 
        for (l = event->misc.string_list; l; ) {
                g = l->data;
@@ -309,8 +309,8 @@
                                             
ecore_ipc_message_new(EVFS_EV_REPLY,
                                                                   
EVFS_EV_PART_CHAR_PTR,
                                                                   client->id, 
0,
-                                                                  0, 
(char*)g->name,
-                                                                  
strlen((char*)g->name)+1));
+                                                                  0, (char*)g,
+                                                                  
strlen((char*)g)+1));
                
                l = l->next;
        }



-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to