Hi,

        When tar has to archiving the same directory where the
output file is located, (for example with something like
tar cf f.tar .) it enters in a infinite loop in:

@archive

        while((l = fread(b, 1, Blksiz, f)) > 0) {
               if(l < Blksiz)
                        memset(b+l, 0, Blksiz-l);
                fwrite(b, Blksiz, 1, tarfile);
        }



        One solution could be ignore the tar file (maybe using
realpath(3)), or call to stat and get the size of the file
before archiving it.




-- 
Roberto E. Vargas Caballero
----------------------------
k...@shike2.com
http://www.shike2.com

Reply via email to