Displaying 4 results from an estimated 4 matches for "linkname_len".
2008 Mar 27
1
overflow: linkname_len
...LINUX/include/libinc/libRTM.h
filevault/visionpro/release/4.7.2_fedora-LINUX-g/include/libinc/librtm.h ->
../../../4.7.2_fedora-LINUX/include/libinc/librtm.h
filevault/visionpro/release/4.7.2_fedora-LINUX-g/include/libinc/mysql.h ->
../../../4.7.2_fedora-LINUX/include/libinc/mysql.h
overflow: linkname_len=2751
ERROR: buffer overflow in recv_file_entry [receiver]
rsync error: error allocating core memory buffers (code 22) at util.c(123)
[receiver=3.0.0]
rsync: writefd_unbuffered failed to write 5 bytes [generator]: Broken pipe
(32)
rsync error: error in rsync protocol data stream (code 12) at io.c(15...
2005 Jun 09
0
[Bug 2784] New: rsync gives following error: buffer overflow in receive_file_entry
...--
config=$RSYNCDCONFIGFILE --port=$RSYNCDPORT" --rsync-path=$RSYNCPATH
$RSYNCSOURCE $LOGNAME@$BCPSERVER::$RSYNCDESTINATIONMODULE
and I have a symbolic link in the directory represented by $RSYNCSOURCE then I
get the following output:
building file list ...
5 files to consider
overflow: linkname_len=1862797370
ERROR: buffer overflow in receive_file_entry
rsync error: error allocating core memory buffers (code 22) at util.c(126)
rsync: connection unexpectedly closed (4 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(359)
If I add the -l optio...
2005 Jun 09
0
[Bug 2785] New: rsync gives following error: buffer overflow in receive_file_entry
...--
config=$RSYNCDCONFIGFILE --port=$RSYNCDPORT" --rsync-path=$RSYNCPATH
$RSYNCSOURCE $LOGNAME@$BCPSERVER::$RSYNCDESTINATIONMODULE
and I have a symbolic link in the directory represented by $RSYNCSOURCE then I
get the following output:
building file list ...
5 files to consider
overflow: linkname_len=1862797370
ERROR: buffer overflow in receive_file_entry
rsync error: error allocating core memory buffers (code 22) at util.c(126)
rsync: connection unexpectedly closed (4 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(359)
If I add the -l optio...
2004 Feb 06
4
memory reduction
..._file_entry(struct file_stru
idev_len = 0;
sum_len = always_checksum && S_ISREG(mode) ? MD4_SUM_LENGTH : 0;
- file_struct_len = idev_len? sizeof file[0] : min_file_struct_len;
+ file_struct_len = min_file_struct_len;
alloc_len = file_struct_len + dirname_len + basename_len
- + linkname_len + sum_len + idev_len;
- if (!(bp = new_array(char, alloc_len)))
- out_of_memory("receive_file_entry");
+ + linkname_len + sum_len;
+ bp = pool_alloc(flist->file_pool, alloc_len, "receive_file_entry");
+
file = *fptr = (struct file_struct *)bp;
memset(bp, 0, min_file_s...