Re: A crash when syncing xattr with rsync-3.0.6

2009-12-01 Thread Wayne Davison
On Mon, Nov 30, 2009 at 4:46 AM, Amir Rapson amir.rap...@gmail.com wrote: I have a crash running rsync-3.0.6 and using the -X flag. This has been fixed in git since mid August (with the freeing of the proper pointer, not the removal of the free() call.) See the b3.0.x branch. I'm thinking

A crash when syncing xattr with rsync-3.0.6

2009-11-30 Thread Amir Rapson
Hi, I have a crash running rsync-3.0.6 and using the -X flag. The crash was in uncache_tmp_xattrs() when free was called on every xattr_item. However, the rsync_xal_l.items is a buffer, not a list, and so only the whole buffer should be freed, and not every item. Can anyone with git access