Enlightenment CVS committal

Author  : lordchaos
Project : e17
Module  : apps/evfs

Dir     : e17/apps/evfs/src/common


Modified Files:
        evfs_io.c 


Log Message:
Fix a destroy list that broke file copy

===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/evfs/src/common/evfs_io.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -3 -r1.21 -r1.22
--- evfs_io.c   26 Oct 2005 02:20:01 -0000      1.21
+++ evfs_io.c   26 Oct 2005 03:44:49 -0000      1.22
@@ -235,7 +235,7 @@
        char uri[1024];
        char* part;
        int it;
-       Ecore_List* uri_part = ecore_dlist_new();       
+       Ecore_List* uri_part;
 
 
        bzero(uri, 1024);
@@ -249,6 +249,7 @@
        /*Send them de-parsed to save time*/
        for (i=0;i<command->file_command.num_files;i++) {
                evfs_filereference* ref = command->file_command.files[i];
+               uri_part = ecore_dlist_new();   
                
                it=0;
                do {
@@ -268,6 +269,7 @@
                                ref->path);
                        }
                        ecore_dlist_append(uri_part, strdup(uri));
+                       printf("Appended URI '%s'\n", uri);
 
                        it++;
                } while (ref->parent);




-------------------------------------------------------
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to