[Please CC me on replies as I am not subscribed to the polipo-users list.]

Hello,

re https://bugs.launchpad.net/ubuntu/+source/polipo/+bug/988780

In indexDiskObjects() readdir returns many entries, then the entry
"..", which causes dobjects to be set to 0x0 thus removing every entry
that has already been enumerated and stored in dobjects.

Patch attached.

--- polipo-1.0.4.1.orig/diskcache.c     2010-01-31 23:13:20.000000000 +0000
+++ polipo-1.0.4.1/diskcache.c  2012-04-26 10:33:40.140208181 +0100
@@ -1941,7 +1941,7 @@

     dobject = readDiskObject((char*)filename, sb);
     if(dobject == NULL)
-        return 0;
+        return dobjects;

     if(!dobjects ||
        (c = strcmp(dobject->location, dobjects->location)) <= 0) {

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Polipo-users mailing list
Polipo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/polipo-users

Reply via email to